summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 503a651..fbf925e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
+TARGET = clockimg
+SRC = clockimg.o cairo_jpg.o
+
CFLAGS = `pkg-config cairo libjpeg popt --cflags` -D_XOPEN_SOURCE -g
LDDFLAGS = `pkg-config cairo libjpeg popt --libs` -lm
-SRC = genclockimg.o cairo_jpg.o
-TARGET = genclockimg
-
$(TARGET): $(SRC)
gcc $(SRC) -o $(TARGET) $(LDDFLAGS)