1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
CC ?= gcc
PLATFORM := $(shell uname)
COMPILER := $(shell ($(CC) -v 2>&1) | tr A-Z a-z )
ifdef DEBUG
OPT = -O0 -DDEBUG=1 --debug -g -ggdb
else
ifneq (,$(findstring gcc,$(COMPILER)))
OPT = -O4
TGTFLAGS = -fwhole-program
else
OPT = -O3
endif
endif
CFLAGS = -Wall -Wextra -Wc++-compat -I. $(OPT)
OBJFLAGS = -fPIC
all: libbitarr.a dev examples
bit_array.o: bit_array.c bit_array.h bit_macros.h
libbitarr.a: bit_array.o
ar -csru libbitarr.a bit_array.o
%.o: %.c %.h
$(CC) $(CFLAGS) $(OBJFLAGS) -c $< -o $@
dev: libbitarr.a bit_macros.h
cd dev && $(MAKE)
examples: libbitarr.a
cd examples && $(MAKE)
test: libbitarr.a
cd dev && $(MAKE) test
cd examples && $(MAKE) test
clean:
rm -rf libbitarr.a *.o *.dSYM *.greg
cd dev && $(MAKE) clean
cd examples && $(MAKE) clean
# Comment this line out to keep .o files
.INTERMEDIATE: $(OBJS)
.PHONY: all clean test examples dev
|