summaryrefslogtreecommitdiffstats
path: root/logotool/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'logotool/Makefile')
-rw-r--r--logotool/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/logotool/Makefile b/logotool/Makefile
index 22e6a44..1c5d08d 100644
--- a/logotool/Makefile
+++ b/logotool/Makefile
@@ -1,7 +1,10 @@
OBJ=logotool.o compress.o uncompress.o rgb2yuv.o
CFLAGS=-Wall -g
+BIN=logotool
-all: ${OBJ}
+all: ${BIN}
+
+${BIN}: ${OBJ}
${CC} ${OBJ} -o logotool
clean: