2
#___________________________________________________________________________
1
# Edam's general-purpose makefile v1.10
2
#_______________________________________________________________________________
6
# (better to specify these in environment/command line)
8
#export STATICLIBS := 1
10
# Target binary/library
10
C_SRCS = groups.c xmalloc.c
16
# Options (comment-out to disable)
21
#___________________________________________________________________________
21
# Subdirectories to make
30
CPPFLAGS = -g -D DEBUG
31
ASFLAGS = -f elf -g -dDEBUG
32
LDFLAGS = -Wall $(if $(STATICLIBS), -static)
39
LDFLAGS = -Wall -s $(if $(STATICLIBS), -static)
45
_SRCS = $(CC_SRCS) $(C_SRCS) $(S_SRCS)
46
_OBJS = $(addsuffix .o,$(basename $(_SRCS)))
47
LDLIBS = $(addprefix -l,$(LIBRARIES))
51
$(if $(CPPBUILD), g++, gcc) -o $(TARGET) $(LDFLAGS) $(_OBJS) $(LDLIBS)
53
#___________________________________________________________________________
56
.PHONY: all clean run depend dep
58
all: clean depend $(TARGET)
31
CFLAGS := $(if $(DEBUGMODE),-g -D DEBUG,-O2)
32
CXXFLAGS := $(if $(DEBUGMODE),-g -D DEBUG,-O2)
33
ASFLAGS := -f elf $(if $(DEBUGMODE),-g -dDEBUG,-O2)
34
LDFLAGS := -Wall $(if $(DEBUGMODE),,-s) $(if $(STATICLIBS), -static)
36
#_______________________________________________________________________________
39
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
40
LDLIBS := $(addprefix -l,$(LIBRARIES))
41
TARGET := $(patsubst %.so,%,$(patsubst %.a,%,$(TARGET)))
42
TARGET := $(TARGET)$(if $(BUILDALIB),.a,)$(if $(BUILDSOLIB),.so,)
44
.PHONY: all subdirs target clean clean_all run depend dep $(SUBDIRS)
61
rm -f core $(DEPFILE) $(_OBJS)
53
ifeq "$(MAKECMDGOALS)" "clean"
55
@echo NOT RECURSING: Use \"make clean_all\" to clean subdirectoried as well...
58
rm -f core $(DEPFILE) $(OBJECTS) $(TARGET)
61
clean_all: subdirs clean
68
# makedepend -f- -- $(CPPFLAGS) -- $(_SRCS) > $(DEPFILE)
70
#___________________________________________________________________________
71
# makedepend -f- -- $(CPPFLAGS) -- $(SOURCES) > $(DEPFILE)
74
@$(MAKE) --no-print-directory -C $@ $(MAKECMDGOALS)
78
$(AR) rcs $(TARGET) $(OBJECTS)
80
$(CXX) $(if $(BUILDSOLIB),-shared) -o $(TARGET) $(LDFLAGS) $(OBJECTS) $(LDLIBS)
84
# $(CC) -c $(CPPFLAGS) $(CFLAGS)
86
# $(CXX) -c $(CPPFLAGS) $(CXXFLAGS)
92
#_______________________________________________________________________________