summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStijn Buys <ingar@telenet.be>2022-05-26 14:19:56 +0200
committerStijn Buys <ingar@telenet.be>2022-05-26 14:19:56 +0200
commitc7e37c328387f164aabb1430dc1d9788bcdd41d2 (patch)
tree6a8651d77abdd2c39085ebeb74218e73273bcbad /Makefile
parentf9d22cbfd5753f0d458c78c11429a13c8f4ef1f4 (diff)
Renamed the program to clockimg.HEADmaster
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)