/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:32:10 UTC
  • Revision ID: edam@waxworlds.org-20090305133210-9i18m48si42bpidr
Tags: 1.8
- set CC correctly
- change assignments for non-recursive assignments
- added BUILDLIB switch to build a static library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#                                                       Edam's Makefile v1.6
 
1
#                                                       Edam's Makefile v1.8
2
2
#___________________________________________________________________________
3
3
#                                                            S E T T I N G S
4
4
 
5
5
# Target binary
6
 
TARGET          = groups
 
6
TARGET          := tim
7
7
 
8
8
# All source files
9
 
CC_SRCS         =
10
 
C_SRCS          = groups.c xmalloc.c
11
 
S_SRCS          = 
 
9
CC_SRCS         := 
 
10
C_SRCS          := 
 
11
S_SRCS          := 
12
12
 
13
13
# Libraries
14
 
LIBRARIES       = 
15
 
 
16
 
# Options (comment-out to disable)
17
 
DEBUG           = 1
18
 
#CPPBUILD       = 1
19
 
#STATICLIBS     = 1
 
14
LIBRARIES       := 
 
15
 
 
16
# Override options (better: specify in environment or on cmdline)
 
17
#DEBUGMODE      := 1
 
18
CPPBUILD        := 1
 
19
#STATICLIBS     := 1
 
20
BUILDLIB        := 1
 
21
 
 
22
# Initial flags
 
23
CPPFLAGS        := 
 
24
ASFLAGS         := 
 
25
LDFLAGS         := 
20
26
 
21
27
#___________________________________________________________________________
22
 
#                                                                    M E A T
23
28
 
24
29
# Software
25
 
AS=nasm
 
30
AS                      := nasm
 
31
CC                      := $(if $(CPPBUILD), g++, gcc)
26
32
 
27
 
ifdef DEBUG
 
33
ifdef DEBUGMODE
28
34
 
29
35
# Debug build flags
30
 
CPPFLAGS        = -g -D DEBUG
31
 
ASFLAGS         = -f elf -g -dDEBUG
32
 
LDFLAGS         = -Wall $(if $(STATICLIBS), -static)
 
36
CPPFLAGS        := -g -D DEBUG $(CPPFLAGS)
 
37
ASFLAGS         := -f elf -g -dDEBUG $(ASFLAGS)
 
38
LDFLAGS         := -Wall $(if $(STATICLIBS), -static) $(LDFLAGS)
33
39
 
34
40
else
35
41
 
36
42
# Release build flags
37
 
CPPFLAGS        = -O2
38
 
ASFLAGS         = -f elf -O2
39
 
LDFLAGS         = -Wall -s $(if $(STATICLIBS), -static)
 
43
CPPFLAGS        := -O2 $(CPPFLAGS)
 
44
ASFLAGS         := -f elf -O2 $(ASFLAGS)
 
45
LDFLAGS         := -Wall -s $(if $(STATICLIBS), -static) $(LDFLAGS)
40
46
 
41
47
endif
42
48
 
43
49
# More variables...
44
 
DEPFILE         = Depends
45
 
_SRCS           = $(CC_SRCS) $(C_SRCS) $(S_SRCS)
46
 
_OBJS           = $(addsuffix .o,$(basename $(_SRCS)))
47
 
LDLIBS          = $(addprefix -l,$(LIBRARIES))
48
 
 
49
 
# Main rule...
 
50
DEPFILE         := Depends
 
51
_SRCS           := $(CC_SRCS) $(C_SRCS) $(S_SRCS)
 
52
_OBJS           := $(addsuffix .o,$(basename $(_SRCS)))
 
53
LDLIBS          := $(addprefix -l,$(LIBRARIES))
 
54
 
 
55
.PHONY: all clean run depend dep
 
56
 
 
57
all:    depend $(TARGET)
 
58
 
50
59
$(TARGET): $(_OBJS)
51
 
        $(if $(CPPBUILD), g++, gcc) -o $(TARGET) $(LDFLAGS) $(_OBJS) $(LDLIBS)
52
 
 
53
 
#___________________________________________________________________________
54
 
#                                                                  R U L E S
55
 
 
56
 
.PHONY: all clean run depend dep
57
 
 
58
 
all:    clean depend $(TARGET)
 
60
ifdef BUILDLIB
 
61
        $(AR) rcs $(TARGET) $(_OBJS)
 
62
else
 
63
        $(CC) -o $(TARGET) $(LDFLAGS) $(LDLIBS) $(_OBJS)
 
64
endif
59
65
 
60
66
clean:
61
67
        rm -f core $(DEPFILE) $(_OBJS)