/make/edam-mk

To get this branch, use:
bzr branch http://bzr.ed.am/make/edam-mk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: edam
  • Date: 2009-03-05 13:34:42 UTC
  • Revision ID: edam@waxworlds.org-20090305133442-tiu2f46d8xgc9v2u
Tags: 1.9
- added SUBDIRS for recursing
- added check for SUBDIRS to clean
- added new goal, clean_all, which recurses
- added BUILDSO switch to build a shared library
- renamed dependency files

Show diffs side-by-side

added added

removed removed

1
 
#_______________________________________________________________________________
2
 
#
3
 
#                     edam's general-purpose makefile v2.2
4
 
#_______________________________________________________________________________
5
 
#                                                                COMMON SETTINGS
 
1
#                                                       Edam's Makefile v1.9
 
2
#___________________________________________________________________________
 
3
#                                                            S E T T I N G S
6
4
 
7
 
#
8
 
# overridable options
9
 
# (better to specify in environment/command line)
10
 
#
 
5
# Overridable options
 
6
# (better to specify these in environment/command line)
11
7
#export DEBUGMODE       := 1
12
 
#export PROFILEMODE := 1
13
 
#export LINKSTATIC      := 1
 
8
#export STATICLIBS      := 1
14
9
 
15
 
#
16
 
# target binary/library
17
 
#
18
 
#MKSTATICLIB    := 1
19
 
#MKSHAREDLIB    := 1
 
10
# Target binary/library
 
11
#BUILDLIB       := 1
 
12
#BUILDSO        := 1
20
13
TARGET          := tim
21
14
 
22
 
#
23
 
# all source files
24
 
#
25
 
SOURCES         := tim.cc
 
15
# All source files
 
16
CC_SRCS         := tim.cc
 
17
C_SRCS          := 
 
18
S_SRCS          := 
26
19
 
27
 
#
28
 
# libraries to link against
29
 
#
 
20
# Libraries to link
30
21
LIBRARIES       := 
31
22
 
32
 
#
33
 
# subdirectories to make first
34
 
#
 
23
# Subdirectories to make
35
24
SUBDIRS         := 
36
25
 
37
 
#
38
 
# additional build flags
39
 
#
40
 
CPPFLAGS        := 
41
 
CFLAGS          := 
42
 
CXXFLAGS        := 
43
 
ASFLAGS         := 
44
 
LDFLAGS         := 
45
 
LDPOSTFLAGS     := 
46
 
 
47
 
#_______________________________________________________________________________
48
 
#                                                                 OTHER SETTINGS
49
 
 
50
 
# set debug mode if profiling
51
 
ifdef PROFILEMODE
52
 
export DEBUGMODE := 1
53
 
endif
54
 
 
55
 
# software
 
26
# Software
56
27
AS                      := nasm
57
28
CC                      := gcc
58
29
CXX                     := g++
59
 
LD                      := g++
60
 
AR                      := ar
61
 
MAKE            := make
62
 
 
63
 
# build flags
64
 
CPPFLAGS        := $(if $(PROFILEMODE),-pg -D PROFILE) $(CPPFLAGS)
65
 
CPPFLAGS        := $(if $(DEBUGMODE),-g -D DEBUG -Wall,-O2) $(CPPFLAGS)
66
 
CPPFLAGS        := $(if $(MKSHAREDLIB),-fPIC) $(CPPFLAGS)
67
 
ASFLAGS         := -f elf $(if $(DEBUGMODE),-g -dDEBUG,-O2) $(ASFLAGS)
68
 
LDFLAGS         := $(if $(PROFILEMODE),-pg) $(LDFLAGS)
69
 
LDFLAGS         := $(if $(or $(PROFILEMODE),$(DEBUGMODE)),,-Wl,-S) $(LDFLAGS)
70
 
LDFLAGS         := $(if $(LINKSTATIC),-static) $(LDFLAGS)
71
 
LDPOSTFLAGS := $(addprefix -l,$(LIBRARIES)) $(LDPOSTFLAGS)
72
 
 
73
 
#_______________________________________________________________________________
74
 
#
75
 
 
76
 
# object debug/profile suffix
77
 
BUILDSUFFIX     := $(if $(PROFILEMODE),_p,$(if $(DEBUGMODE),_d))
78
 
 
79
 
# files
80
 
OBJECTS         := $(addsuffix $(BUILDSUFFIX).o,$(basename $(SOURCES)))
81
 
DEPFILES        := $(addsuffix .dep,$(basename $(SOURCES)))
82
 
 
83
 
# fixup target
84
 
ifdef TARGET
85
 
TARGET          := $(basename $(TARGET))$(BUILDSUFFIX)$(suffix $(TARGET))
86
 
TARGET          := $(patsubst %.so,%,$(patsubst %.a,%,$(TARGET)))
87
 
ifneq ($(strip $(MKSHAREDLIB) $(MKSTATICLIB)),)
88
 
TARGET          := $(TARGET)$(if $(MKSHAREDLIB),.so,$(if $(MKSTATICLIB),.a))
89
 
TARGET          := lib$(patsubst lib%,%,$(TARGET))
90
 
endif
91
 
endif
92
 
 
93
 
# Set up dependancy generation build flags and a commands to be executed after
94
 
# generating any dependancy file. The commands append the names of all the
95
 
# depended-on files in the dependancy file to the end of the dependancy file as
96
 
# empty rules with no prerequesits or commands. This causes make not to fail if
97
 
# one of these files becomes non-existant, but causes files dependant on these
98
 
# files to be rebuilt (and thus also have their dependancies regenerated).
99
 
ifdef DEBUGMODE
100
 
ifndef PROFILEMODE
101
 
FIXUP_DEPENDANCY_FILES = \
102
 
        sed 's/\#.*//;s/^[^:]*://;s/^[ \t]*//;s/ *\\$$//;/^$$/d;s/$$/:/' < \
103
 
        $(basename $<).dep > .$$$$~; cat .$$$$~ >> $(basename $<).dep; rm .$$$$~;
104
 
DEPFLAGS        = -MD -MF $(basename $<).dep
105
 
endif
106
 
endif
107
 
 
108
 
# include dependancies
109
 
ifneq "$(MAKECMDGOALS)" "clean"
110
 
ifneq "$(MAKECMDGOALS)" "clean_all"
111
 
-include $(DEPFILES)
112
 
endif
113
 
endif
114
 
 
115
 
# default rule
116
 
.DEFAULT_GOAL := all
117
 
 
118
 
#_______________________________________________________________________________
119
 
#                                                                          RULES
120
 
 
121
 
.PHONY: all subdirs target clean clean_all run depend dep $(SUBDIRS)
122
 
 
123
 
all: subdirs target
124
 
 
125
 
subdirs: $(SUBDIRS)
126
 
 
127
 
target: $(TARGET)
 
30
 
 
31
# Flags
 
32
CPPFLAGS        :=
 
33
CFLAGS          := $(if $(DEBUGMODE),-g -D DEBUG,-O2)
 
34
CXXFLAGS        := $(if $(DEBUGMODE),-g -D DEBUG,-O2)
 
35
ASFLAGS         := -f elf $(if $(DEBUGMODE),-g -dDEBUG,-O2)
 
36
LDFLAGS         := -Wall $(if $(DEBUGMODE),,-s) $(if $(STATICLIBS), -static)
 
37
 
 
38
#___________________________________________________________________________
 
39
 
 
40
DEPFILE         := depends.mk
 
41
_SRCS           := $(CC_SRCS) $(C_SRCS) $(S_SRCS)
 
42
_OBJS           := $(addsuffix .o,$(basename $(_SRCS)))
 
43
LDLIBS          := $(addprefix -l,$(LIBRARIES))
 
44
 
 
45
.PHONY: all target clean clean_all run depend dep $(SUBDIRS)
 
46
 
 
47
all:    $(SUBDIRS) $(TARGET)
 
48
 
 
49
target: $(TARGET)
128
50
 
129
51
clean:
 
52
ifeq ($(MAKECMDGOALS),clean)
130
53
ifdef SUBDIRS
131
 
ifneq "$(MAKECMDGOALS)" "clean_all"
132
 
        @echo "NOT RECURSING: use 'make clean_all' to clean subdirectories as well."
133
 
endif
134
 
endif
135
 
        rm -f $(OBJECTS) $(TARGET) core
136
 
 
137
 
clean_all: subdirs clean
138
 
 
139
 
ifndef MKSTATICLIB
140
 
ifndef MKSHAREDLIB
141
 
run: target
142
 
        ./$(TARGET)
143
 
endif
144
 
endif
 
54
        @echo NOT RECURSING: Use \"make clean_all\" to clean recursively..."
 
55
endif
 
56
endif
 
57
        rm -f core $(DEPFILE) $(_OBJS) $(TARGET)
 
58
        rm -f *~
 
59
 
 
60
clean_all: $(SUBDIRS) clean
 
61
 
 
62
run:    $(TARGET)
 
63
        $(if $(BUILDLIB),@echo Can\'t run a library\!,./$(TARGET))
 
64
 
 
65
#depend dep:
 
66
#       makedepend -f- -- $(CPPFLAGS) -- $(_SRCS) > $(DEPFILE)
145
67
 
146
68
$(SUBDIRS):
147
 
        @if [ "$@" = "$(firstword $(SUBDIRS))" ]; then echo; fi
148
 
        @$(MAKE) -C $@ $(filter-out $(SUBDIRS),$(MAKECMDGOALS))
149
 
        @echo
 
69
        @$(MAKE) --no-print-directory -C $@ $(MAKECMDGOALS)
150
70
 
151
 
$(TARGET): $(OBJECTS)
152
 
ifdef MKSTATICLIB
153
 
        $(AR) rcs $(TARGET) $(OBJECTS)
 
71
$(TARGET): $(_OBJS)
 
72
ifdef BUILDLIB
 
73
        $(AR) rcs $(TARGET) $(_OBJS)
154
74
else
155
 
        $(LD) $(if $(MKSHAREDLIB),-shared) -o $(TARGET) $(LDFLAGS) $(OBJECTS) $(LDPOSTFLAGS) 
 
75
        $(CC) $(if $(BUILDSO),-shared) -o $(TARGET) $(LDFLAGS) $(_OBJS) $(LDLIBS)
156
76
endif
157
77
 
158
 
%.o %_d.o %_p.o: %.c
159
 
        $(CC) -c $(CPPFLAGS) $(DEPFLAGS) $(CFLAGS) -o $@ $<
160
 
        $(FIXUP_DEPENDANCY_FILES)
161
 
 
162
 
%.o %_d.o %_p.o: %.cc
163
 
        $(CXX) -c $(CPPFLAGS) $(DEPFLAGS) $(CXXFLAGS) -o $@ $<
164
 
        $(FIXUP_DEPENDANCY_FILES)
165
 
%.o %_d.o %_p.o: %.C
166
 
        $(CXX) -c $(CPPFLAGS) $(DEPFLAGS) $(CXXFLAGS) -o $@ $<
167
 
        $(FIXUP_DEPENDANCY_FILES)
168
 
%.o %_d.o %_p.o: %.cpp
169
 
        $(CXX) -c $(CPPFLAGS) $(DEPFLAGS) $(CXXFLAGS) -o $@ $<
170
 
        $(FIXUP_DEPENDANCY_FILES)
171
 
 
172
 
%.o %_d.o %_p.o: %.s
173
 
        $(AS) $(ASFLAGS) -o $@ $<
174
 
%.o %_d.o %_p.o: %.S
175
 
        $(AS) $(ASFLAGS) -o $@ $<
176
 
%.o %_d.o %_p.o: %.asm
177
 
        $(AS) $(ASFLAGS) -o $@ $<
178
 
 
179
 
%.dep: %.s
180
 
        $(AS) $(ASFLAGS) -M $< > $@
181
 
        $(FIXUP_DEPENDANCY_FILES)
182
 
%.dep: %.S
183
 
        $(AS) $(ASFLAGS) -M $< > $@
184
 
        $(FIXUP_DEPENDANCY_FILES)
185
 
%.dep: %.asm
186
 
        $(AS) $(ASFLAGS) -M $< > $@
187
 
        $(FIXUP_DEPENDANCY_FILES)
188
 
 
189
 
#_______________________________________________________________________________
 
78
#%.o:   %.c
 
79
#       $(CC) -c $(CPPFLAGS) $(CFLAGS)
 
80
#%.o:   %.cc
 
81
#       $(CXX) -c $(CPPFLAGS) $(CXXFLAGS)
 
82
#%.o:   %.s
 
83
#       $(AS) $(ASFLAGS)
 
84
 
 
85
-include $(DEPFILE)
 
86
 
 
87
#___________________________________________________________________________