aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKrow Savcik <krow@savcik.xyz>2024-07-31 13:35:43 +0300
committerKrow Savcik <krow@savcik.xyz>2024-07-31 13:35:43 +0300
commit35fdfc1eb9be244e37002380de6c3ac650648cab (patch)
tree5475e2dd495c3fc5b1d1861893175b88a42f3de2 /Makefile
parent1c1c5fa9b1094e96e6eea8abc163949e2277e151 (diff)
feature: improved the export function to include frames into considerationHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e9b90c1..b043b1a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
include config.mk
-TOBJ = ui.o canvas.o user.o palette.o tools.o debug.o
+TOBJ = ui.o canvas.o user.o palette.o tools.o debug.o export.o
OBJ = $(addprefix build/, ${TOBJ})
build: prep config.h ${OBJ} src/cdraw.c
@@ -19,7 +19,7 @@ build/%.o: src/%.c
${CC} ${CFLAGS} $< -c -o $@
clean:
- rm $(OBJ)
- rm build/cdraw
+ rm -f $(OBJ)
+ rm -f build/cdraw
.PHONY: build clean run prep