X-Git-Url: https://jxself.org/git/?p=b43-tools.git;a=blobdiff_plain;f=fwcutter%2FMakefile;h=5a5b8ec7e16563fd5143b3db1df13f9f9fa99398;hp=2eb2e84cb3899fd11766232055b27b69ae5d667b;hb=HEAD;hpb=3d0d4c6e026017fa698ee4357788ebcf42e6502f diff --git a/fwcutter/Makefile b/fwcutter/Makefile index 2eb2e84..5a5b8ec 100644 --- a/fwcutter/Makefile +++ b/fwcutter/Makefile @@ -1,34 +1,63 @@ -VERSION = 012 +VERSION = 019 + +# The toolchain definitions +CC = cc +SPARSE = sparse + +V = @ # Verbose build: make V=1 +C = 0 # Sparsechecker build: make C=1 +Q = $(V:1=) +QUIET_CC = $(Q:@=@echo ' CC '$@;)$(CC) +QUIET_DEPEND = $(Q:@=@echo ' DEPEND '$@;)$(CC) +ifeq ($(C),1) +QUIET_SPARSE = $(Q:@=@echo ' SPARSE '$@;)$(SPARSE) +else +QUIET_SPARSE = @true +endif -CC ?= cc PREFIX ?= /usr/local -CFLAGS ?= -Os -fomit-frame-pointer -CFLAGS += -std=c99 -Wall -pedantic -D_BSD_SOURCE -LDFLAGS ?= +CFLAGS ?= -Os -fomit-frame-pointer +CFLAGS += -std=c99 -Wall -pedantic -D_BSD_SOURCE -D_DEFAULT_SOURCE +LDFLAGS ?= - -OBJECTS = fwcutter.o md5.o +SRCS = fwcutter.c md5.c BIN = b43-fwcutter CFLAGS += -DFWCUTTER_VERSION_=$(VERSION) -all: $(BIN) +.SUFFIXES: +.PHONY: all install clean distclean +.DEFAULT_GOAL := all + +DEPS = $(sort $(patsubst %.c,dep/%.d,$(1))) +OBJS = $(sort $(patsubst %.c,obj/%.o,$(1))) -fwcutter.o: fwcutter.h fwcutter_list.h md5.h +# Generate dependencies +$(call DEPS,$(SRCS)): dep/%.d: %.c + @mkdir -p $(dir $@) + $(QUIET_DEPEND) -o $@.tmp -MM -MT "$@ $(patsubst dep/%.d,obj/%.o,$@)" $(CFLAGS) $< && mv -f $@.tmp $@ -md5.o: md5.h +-include $(call DEPS,$(SRCS)) + +# Generate object files +$(call OBJS,$(SRCS)): obj/%.o: + @mkdir -p $(dir $@) + $(QUIET_SPARSE) $(SPARSEFLAGS) $< + $(QUIET_CC) -o $@ -c $(CFLAGS) $< + +all: $(BIN) -$(BIN): $(OBJECTS) - $(CC) $(CFLAGS) -o $(BIN) $(OBJECTS) $(LDFLAGS) +$(BIN): $(call OBJS,$(SRCS)) + $(QUIET_CC) $(CFLAGS) -o $(BIN) $(call OBJS,$(SRCS)) $(LDFLAGS) install: all - -install -d -o 0 -g 0 -m 755 $(PREFIX)/bin/ - -install -o 0 -g 0 -m 755 $(BIN) $(PREFIX)/bin/ - -install -d -o 0 -g 0 -m 755 $(PREFIX)/man/man1/ - -install -o 0 -g 0 -m 644 $(BIN).1 $(PREFIX)/man/man1/ + install -d -o 0 -g 0 -m 755 $(PREFIX)/bin/ + install -o 0 -g 0 -m 755 $(BIN) $(PREFIX)/bin/ + install -d -o 0 -g 0 -m 755 $(PREFIX)/man/man1/ + install -o 0 -g 0 -m 644 $(BIN).1 $(PREFIX)/man/man1/ clean: - -rm -f *.o $(BIN) + -rm -Rf obj dep *.orig *.rej *~ distclean: clean - -rm -f *.fw *.orig *.rej *~ + -rm -f *.fw $(BIN)