From: sgunderson@bigfoot.com <> Date: Mon, 4 Feb 2008 00:55:15 +0000 (+0100) Subject: Add a Makefile. X-Git-Url: https://git.sesse.net/?p=qscale;a=commitdiff_plain;h=94417d104248007b62f0f3685e810ca3334ecd55 Add a 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