mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 12:00:34 -07:00
11 lines
166 B
Makefile
11 lines
166 B
Makefile
CFLAGS = -Wall -Werror
|
|
TARGETS = fizzbuzz
|
|
|
|
all: build
|
|
build: $(TARGETS)
|
|
|
|
install: $(TARGETS)
|
|
install -m 0755 $(TARGETS) $(DESTDIR)/bin
|
|
|
|
clean:
|
|
rm -f *.o $(TARGETS)
|