summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@telenet.be>2022-05-25 20:30:28 +0200
committerStijn Buys <ingar@telenet.be>2022-05-25 20:30:28 +0200
commit518a8db167fd3b1d94ccee76806847c097e82620 (patch)
tree0e646be6920df500e60e5f33442ad1495c285f76
parent9c1ed304375d5515e5a4a20bbdb0784d5b4de4b1 (diff)
Fixed make install.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9faee5b..21a488a 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
CFLAGS = `pkg-config cairo libjpeg popt --cflags` -D_XOPEN_SOURCE -g
LDDFLAGS = `pkg-config cairo libjpeg popt --libs` -lm
-SRC = cairo_jpg.o genclockimg.o
+SRC = genclockimg.o
TARGET = genclockimg
$(TARGET): $(SRC)
@@ -14,7 +14,7 @@ clean:
rm *.o $(TARGET)
install:
- install -o root -g root -m 755 $(target) /usr/bin
+ install -o root -g root -m 755 $(TARGET) /usr/bin
uninstall:
rm /usr/bin/$(TARGET)