1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-07 20:41:05 -07:00
moth/packages/fizzbuzz/src/Makefile

12 lines
166 B
Makefile
Raw Normal View History

2011-10-13 22:12:53 -06:00
CFLAGS = -Wall -Werror
TARGETS = fizzbuzz
all: build
build: $(TARGETS)
install: $(TARGETS)
install -m 0755 $(TARGETS) $(DESTDIR)/bin
clean:
rm -f *.o $(TARGETS)