/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:18:12 UTC
  • Revision ID: edam@waxworlds.org-20090305131812-s606scn83exdp60j
Tags: 1.0
initial makefile

Show diffs side-by-side

added added

removed removed

1
 
#                                                       Edam's Makefile v1.8
2
 
#___________________________________________________________________________
3
 
#                                                            S E T T I N G S
4
 
 
 
1
#
5
2
# Target binary
6
 
TARGET          := tim
 
3
#
 
4
TARGET          = digest
7
5
 
 
6
#
8
7
# All source files
9
 
CC_SRCS         := 
10
 
C_SRCS          := 
11
 
S_SRCS          := 
12
 
 
13
 
# Libraries
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         := 
26
 
 
27
 
#___________________________________________________________________________
28
 
 
29
 
# Software
30
 
AS                      := nasm
31
 
CC                      := $(if $(CPPBUILD), g++, gcc)
32
 
 
33
 
ifdef DEBUGMODE
34
 
 
35
 
# Debug build flags
36
 
CPPFLAGS        := -g -D DEBUG $(CPPFLAGS)
37
 
ASFLAGS         := -f elf -g -dDEBUG $(ASFLAGS)
38
 
LDFLAGS         := -Wall $(if $(STATICLIBS), -static) $(LDFLAGS)
39
 
 
40
 
else
41
 
 
42
 
# Release build flags
43
 
CPPFLAGS        := -O2 $(CPPFLAGS)
44
 
ASFLAGS         := -f elf -O2 $(ASFLAGS)
45
 
LDFLAGS         := -Wall -s $(if $(STATICLIBS), -static) $(LDFLAGS)
46
 
 
47
 
endif
 
8
#
 
9
CC_SRCS         =
 
10
C_SRCS          = digest.c
 
11
S_SRCS          =
 
12
 
 
13
#
 
14
# Build flags
 
15
#
 
16
#CFLAGS=-g
 
17
LDFLAGS=-lcrypt -lssl
 
18
 
 
19
 
 
20
#---------------------------------------------------------------------------
 
21
# Edam's makefile v1.0
48
22
 
49
23
# More variables...
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
 
 
59
 
$(TARGET): $(_OBJS)
60
 
ifdef BUILDLIB
61
 
        $(AR) rcs $(TARGET) $(_OBJS)
62
 
else
63
 
        $(CC) -o $(TARGET) $(LDFLAGS) $(LDLIBS) $(_OBJS)
64
 
endif
 
24
DEPFILE         = Depends
 
25
SRCS            = $(C_SRCS) $(CC_SCRS) $(S_SRCS)
 
26
OBJS            = $(addsuffix .o,$(basename $(SRCS)))
 
27
 
 
28
# Main rule...
 
29
$(TARGET): $(OBJS)
 
30
        $(CC) -o $(TARGET) $(OBJS) $(LDFLAGS)
 
31
 
 
32
#---------------------------------------------------------------------------
 
33
 
 
34
.PHONY: all clean depend dep
 
35
 
 
36
all:    clean depend $(TARGET)
65
37
 
66
38
clean:
67
 
        rm -f core $(DEPFILE) $(_OBJS)
 
39
        rm -f core $(DEPFILE) $(OBJS)
68
40
        rm -f *~
69
41
 
70
 
run:    $(TARGET)
71
 
        ./$(TARGET)
72
 
 
73
42
depend dep:
74
 
#       makedepend -f- -- $(CPPFLAGS) -- $(_SRCS) > $(DEPFILE)
 
43
        makedepend -f- -- $(CFLAGS) -- $(SRCS) > $(DEPFILE)
75
44
 
76
 
#___________________________________________________________________________
 
45
#---------------------------------------------------------------------------
77
46
#include $(DEPFILE)