From 518a8db167fd3b1d94ccee76806847c097e82620 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 25 May 2022 20:30:28 +0200 Subject: Fixed make install. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3