]> git.sesse.net Git - qscale/commitdiff
Add a Makefile.
authorsgunderson@bigfoot.com <>
Mon, 4 Feb 2008 00:55:15 +0000 (01:55 +0100)
committersgunderson@bigfoot.com <>
Mon, 4 Feb 2008 00:55:15 +0000 (01:55 +0100)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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