aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/Makefile
diff options
context:
space:
mode:
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)