X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/hmcfgusb/blobdiff_plain/9db2e455127fa181c68cf093d23fe0c1ee142925..885a84e3a91964fb6dada1120be301102268e6ab:/Makefile diff --git a/Makefile b/Makefile index b82aa23..74d4217 100644 --- a/Makefile +++ b/Makefile @@ -2,16 +2,21 @@ CFLAGS=-MMD -O2 -Wall -I/opt/local/include -g LDFLAGS=-L/opt/local/lib -lusb-1.0 -lm CC=gcc -OBJS=hmcfgusb.o hmland.o +HMLAN_OBJS=hmcfgusb.o hmland.o +HMSNIFF_OBJS=hmcfgusb.o hmsniff.o -all: hmland +OBJS=$(HMLAN_OBJS) $(HMSNIFF_OBJS) + +all: hmland hmsniff DEPEND=$(OBJS:.o=.d) -include $(DEPEND) -hmland: $(OBJS) +hmland: $(HMLAN_OBJS) + +hmsniff: $(HMSNIFF_OBJS) clean: - rm -f $(OBJS) $(DEPEND) hmland + rm -f $(HMLAN_OBJS) $(HMSNIFF_OBJS) $(DEPEND) hmland hmsniff .PHONY: all clean