aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: c77c6cb98b512c4fef5450b9421fe25f8847450e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
OBJECTS = nyancat.o

all: nyancat

nyancat: $(OBJECTS)
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(OBJECTS) -o $@

clean:
	-rm -f $(OBJECTS) nyancat

check: all
	# Unit tests go here. None currently.
	@echo "*** ALL TESTS PASSED ***"

.PHONY: all clean check