diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,8 +1,13 @@ .POSIX: -OBJS = strbst.o +OBJS = strbst.o ll.o nodelink.o read.o main.o CFLAGS = -Wall -pedantic +CC = gcc tmplt: $(OBJS) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@ clean: rm -f $(OBJS) inter strbst.o: strbst.c strbst.h +ll.o: ll.c ll.h +nodelink.o: nodelink.c nodelink.h strbst.h +read.o: read.c read.h strbst.h nodelink.h +main.o: main.c |