aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7327ab61007871eb6bd2fdecc28bbab97008f1e6 (plain)
1
2
3
4
5
6
7
8
.POSIX:
OBJS = strbst.o
CFLAGS = -Wall -pedantic
tmplt: $(OBJS)
	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
clean:
	rm -f $(OBJS) inter
strbst.o: strbst.c strbst.h