mirror of https://github.com/dirtbags/moth.git
11 lines
194 B
Makefile
11 lines
194 B
Makefile
|
CFLAGS = -Wall -Werror
|
||
|
TARGETS = multicaster-server multicaster-client
|
||
|
|
||
|
all: build
|
||
|
build: $(TARGETS)
|
||
|
|
||
|
install: $(TARGETS)
|
||
|
install -m 0755 $(TARGETS) $(DESTDIR)/bin
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o $(TARGETS)
|