From 94417d104248007b62f0f3685e810ca3334ecd55 Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Mon, 4 Feb 2008 01:55:15 +0100 Subject: [PATCH] Add a Makefile. --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..df52768 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CC=gcc +OBJS=qscale.o + +CFLAGS=-Wall -O2 -msse +LDFLAGS=-lm -ljpeg + +qscale: qscale.o + +clean: + $(RM) qscale $(OBJS) + +.PHONY: clean -- 2.39.2