summaryrefslogtreecommitdiff
path: root/Makefile
blob: facb0e4d9d0db01acc55dbdbfb70e3836173ec1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
OBJS=maestropond.o

maestropond: ${OBJS}
	gcc -g ${OBJS} -o maestropond

maestropond.o: maestropond.c
	gcc -g -W -Wall -c maestropond.c -o maestropond.o

clean:
	rm -f ${OBJS} maestropond

.PHONY: clean