nyancat-server/src/Makefile
2011-11-30 21:46:00 -08:00

16 lines
234 B
Makefile

OBJECTS = nyancat.o
all: nyancat
nyancat: $(OBJECTS)
$(CC) $(LFLAGS) $(OBJECTS) -o $@
clean:
-rm -f $(OBJECTS) nyancat
check: all
# Unit tests go here. None currently.
@echo "*** ALL TESTS PASSED ***"
.PHONY: all clean check