/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:47:12 UTC
  • Revision ID: edam@waxworlds.org-20090305134712-grzh787t06ojomf8
Tags: 2.0
- smartened up comments
- added PROFILEMODE
- renamed STATICLIBS to LINKSTATIC
- renamed lib target switched to MKSHAREDLIB and MKSTATICLIB
- added setting of software variables
- added debug & profile suffixes
- added dependency file generation system
- added rules to build various source types and added dependency generation

Show diffs side-by-side

added added

removed removed

1
 
#                                                       Edam's Makefile v1.9
2
 
#___________________________________________________________________________
3
 
#                                                            S E T T I N G S
 
1
#_______________________________________________________________________________
 
2
#
 
3
#                                       edam's general-purpose makefile v2.0
 
4
#_______________________________________________________________________________
 
5
#                                                                COMMON SETTINGS
4
6
 
5
 
# Overridable options
6
 
# (better to specify these in environment/command line)
 
7
#
 
8
# overridable options
 
9
# (better to specify in environment/command line)
 
10
#
7
11
#export DEBUGMODE       := 1
8
 
#export STATICLIBS      := 1
 
12
#export PROFILEMODE := 1
 
13
#export LINKSTATIC      := 1
9
14
 
10
 
# Target binary/library
11
 
#BUILDLIB       := 1
12
 
#BUILDSO        := 1
 
15
#
 
16
# target binary/library
 
17
#
 
18
#MKSTATICLIB    := 1
 
19
#MKSHAREDLIB    := 1
13
20
TARGET          := tim
14
21
 
15
 
# All source files
16
 
CC_SRCS         := tim.cc
17
 
C_SRCS          := 
18
 
S_SRCS          := 
 
22
#
 
23
# all source files
 
24
#
 
25
SOURCES         := tim.cc
19
26
 
20
 
# Libraries to link
 
27
#
 
28
# libraries to link against
 
29
#
21
30
LIBRARIES       := 
22
31
 
23
 
# Subdirectories to make
 
32
#
 
33
# subdirectories to make first
 
34
#
24
35
SUBDIRS         := 
25
36
 
26
 
# Software
 
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
27
56
AS                      := nasm
28
57
CC                      := gcc
29
58
CXX                     := g++
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)
 
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))
 
83
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
 
114
 
 
115
.PHONY: all subdirs target clean clean_all run depend dep $(SUBDIRS)
 
116
 
 
117
all: subdirs target
 
118
 
 
119
subdirs: $(SUBDIRS)
 
120
 
 
121
target: $(TARGET)
50
122
 
51
123
clean:
52
 
ifeq ($(MAKECMDGOALS),clean)
53
124
ifdef SUBDIRS
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)
 
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
 
130
 
 
131
clean_all: subdirs clean
 
132
 
 
133
ifndef MKSTATICLIB
 
134
ifndef MKSHAREDLIB
 
135
run: target
 
136
        ./$(TARGET)
 
137
endif
 
138
endif
67
139
 
68
140
$(SUBDIRS):
69
 
        @$(MAKE) --no-print-directory -C $@ $(MAKECMDGOALS)
 
141
        @$(MAKE) -C $@ $(filter-out $(SUBDIRS),$(MAKECMDGOALS))
 
142
        @echo
70
143
 
71
 
$(TARGET): $(_OBJS)
72
 
ifdef BUILDLIB
73
 
        $(AR) rcs $(TARGET) $(_OBJS)
 
144
$(TARGET): $(OBJECTS)
 
145
ifdef MKSTATICLIB
 
146
        $(AR) rcs $(TARGET) $(OBJECTS)
74
147
else
75
 
        $(CC) $(if $(BUILDSO),-shared) -o $(TARGET) $(LDFLAGS) $(_OBJS) $(LDLIBS)
 
148
        $(LD) $(if $(MKSHAREDLIB),-shared) -o $(TARGET) $(LDFLAGS) $(OBJECTS) $(LDPOSTFLAGS) 
76
149
endif
77
150
 
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
 
#___________________________________________________________________________
 
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)
 
181
 
 
182
#_______________________________________________________________________________