forked from CPqD/RouteFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Make.rules
66 lines (46 loc) · 1.5 KB
/
Make.rules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#.SILENT:
# Sufix and prefix
LIBSUFFIX=a
LIBPREFIX=lib
SOURCE_SUFIX := cc
SOURCE_FILES := $(wildcard *.$(SOURCE_SUFIX))
LIBS := $(addprefix $(BUILD_LIB_DIR)/$(LIBPREFIX),$(libdirs))
LIBS := $(addsuffix .$(LIBSUFFIX),$(LIBS))
LNX_LIBS := -lrt -lnetlink -lutil -lpthread
CPPFLAGS += $(addprefix -I$(LIB_DIR)/,$(libdirs))
CPPFLAGS += -I$(INC_DIR)
ifneq (,$(DEBUG))
CFLAGS += -g -D_GLIBCXX_DEBUG=1
endif
ifneq (,$(MAKEAPPS))
apps_bin := $(BUILD_DIR)/$(MAKEAPPS)
endif
ifneq (,$(MAKELIB))
targetlib = $(BUILD_LIB_DIR)/$(LIBPREFIX)$(notdir $(CURDIR)).$(LIBSUFFIX)
endif
ifneq (,$(SOURCE_FILES))
objs := $(patsubst %.$(SOURCE_SUFIX),%.o, \
$(addprefix $(BUILD_OBJ_DIR)/$(notdir $(CURDIR))/,$(SOURCE_FILES)))
endif
################################################################################
# TARGETS
all: $(targetlib) $(apps_bin)
################################################################################
# BUILD OBJS
$(BUILD_OBJ_DIR)/$(notdir $(CURDIR))/%.o: %.$(SOURCE_SUFIX)
$(CPP) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
################################################################################
# BUILD LIBS
ifneq (,$(MAKELIB))
$(BUILD_LIB_DIR)/%.$(LIBSUFFIX): $(objs)
$(AR) r $@ $?
endif
################################################################################
# BUILD APPS
$(apps_bin): $(objs) $(LIBS)
$(CPP) $(CPPFLAGS) -o $@ $(objs) $(LIBS) $(LNX_LIBS);
################################################################################
# CLEAN
clean:
@rm -f $(objs);
@rm -f $(targetlib);