diff options
author | Stijn Buys <ingar@telenet.be> | 2022-05-25 20:30:28 +0200 |
---|---|---|
committer | Stijn Buys <ingar@telenet.be> | 2022-05-25 20:30:28 +0200 |
commit | 518a8db167fd3b1d94ccee76806847c097e82620 (patch) | |
tree | 0e646be6920df500e60e5f33442ad1495c285f76 /Makefile | |
parent | 9c1ed304375d5515e5a4a20bbdb0784d5b4de4b1 (diff) |
Fixed make install.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |