/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:40:53 UTC
  • Revision ID: edam@waxworlds.org-20090305134053-7afaeqithc87bwp2
Tags: 1.10
- combines sources in to one variable, SOURCES
- renamed switches to build static and shared lib to BUILDALIB and BUILDSOLIB
- fixed run goal
- added subdirs goal to phony list
- fix linking to use CXX, not CC

Show diffs side-by-side

added added

removed removed

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