c-random/cbase/data/trees/Makefile
2020-06-09 17:51:23 +02:00

14 lines
175 B
Makefile

OBJ=binarytree.o bst.o rbtree.o
SRC=$(OBJ:.o=.c)
HDR=$(SRC:.c=.h)
CFLAGS+=-Wall
CFLAGS+=-Wextra
all: $(OBJ)
clean:
$(RM) $(OBJ)
%.o: %.c %.h
$(CC) -o $@ -c $< $(CFLAGS)