CC=gcc CFLAGS=-Wall -I../src/include -DDEBUG -g SRC=test.c OBJ=$(SRC:.c=.o) OBJ+=../src/random.o all: test test: $(OBJ) $(CC) -o $@ $^ $(LDFLAGS) clean: rm -f *.o test .PHONY: all test clean