moth/packages/multicaster/src/Makefile

12 lines
169 B
Makefile
Raw Normal View History

2011-09-29 09:32:27 -06:00
CFLAGS = -Wall -Werror
2011-10-13 21:15:11 -06:00
TARGETS = multicaster
2011-09-29 09:32:27 -06:00
all: build
build: $(TARGETS)
install: $(TARGETS)
install -m 0755 $(TARGETS) $(DESTDIR)/bin
clean:
2011-10-13 22:12:53 -06:00
rm -f *.o $(TARGETS)