Don't build ethertype-dump and art-request or install them by default

This commit is contained in:
Juhani Krekelä 2019-07-15 20:07:37 +03:00
parent 69a799c412
commit 76704d4a11
1 changed files with 7 additions and 4 deletions

View File

@ -10,15 +10,18 @@ LDFLAGS +=
SED ?= sed
BINS := ethertype-dump arp-request ethermess
BINS := ethermess
LIBEXECS := ethermess-backend
TOOLS := ethertype-dump arp-request
.SUFFIXES:
.SUFFIXES: .c .o
.PHONY: all install uninstall clean distclean
.PHONY: default all install uninstall clean distclean
all: $(BINS) $(LIBEXECS)
default: $(BINS) $(LIBEXECS)
all: $(BINS) $(LIBEXECS) $(TOOLS)
ethertype-dump: ethertype-dump.o
$(CC) -o $@ $< $(LDFLAGS)
@ -48,6 +51,6 @@ uninstall:
cs $(DESTDIR)$(LIBEXECDIR) && rm $(LIBEXECS)
clean:
rm -f $(BINS) $(LIBEXECS) *.o
rm -f $(BINS) $(LIBEXECS) $(TOOLS) *.o
distclean: clean