aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-05-17 21:23:49 +0200
committerLouis Burda <quent.burda@gmail.com>2021-05-17 21:23:49 +0200
commit130fc6d97bce96bc042bdaa6329b82d00f6316d5 (patch)
treea7a74dfc5536169997a6a0b278fa15c8d3cf7462 /service/src/Makefile
parent22211a1267f136c4b55bc2298bc9de19d5973f9f (diff)
downloadenowars5-service-stldoctor-130fc6d97bce96bc042bdaa6329b82d00f6316d5.tar.gz
enowars5-service-stldoctor-130fc6d97bce96bc042bdaa6329b82d00f6316d5.zip
renamed to STLDoctor
Diffstat (limited to 'service/src/Makefile')
-rw-r--r--service/src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/src/Makefile b/service/src/Makefile
index 6b981a2..c46988a 100644
--- a/service/src/Makefile
+++ b/service/src/Makefile
@@ -2,13 +2,13 @@ CFLAGS = -g -I .
.PHONY: all clean
-all: printdoc
+all: stldoctor
clean:
- rm -f printdoc *.o
+ rm -f stldoctor *.o
%.o: %.c %.h
$(CC) -c -o $@ $< $(CFLAGS) $(LDLIBS)
-printdoc: printdoc.c stlfile.o util.o
+stldoctor: main.c stlfile.o util.o
$(CC) -o $@ $^ $(CFLAGS) $(LDLIBS)