Menu

[r143]: / trunk / makefiles / Makefile  Maximize  Restore  History

Download this file

77 lines (57 with data), 2.6 kB

 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
67
68
69
70
71
72
73
74
75
76
###############################################################################
## Makefile ##
###############################################################################
A.OUT = A.OUT
###############################################################################
include $(HOME)/local/cpplapack/makefiles/Makefile.g++
###############################################################################
HEADERS:= $(shell find ./ -iname '*.hpp')
SOURCES:= $(shell find ./ -iname '*.cpp')
SOURCES:= $(sort $(SOURCES))
OBJECTS:= $(SOURCES:%.cpp=%.o)
THIS_FILE:= $(firstword $(MAKEFILE_LIST))
###############################################################################
###############################################################################
###############################################################################
release: depend
@echo -e "##################################"
@echo -e "#### building in release mode ####"
@echo -e "##################################\n"
@$(MAKE) -f $(THIS_FILE) --no-print-directory build RELEASE=1
profile: depend
@echo -e "##################################"
@echo -e "#### building in profile mode ####"
@echo -e "##################################\n"
@$(MAKE) -f $(THIS_FILE) --no-print-directory build PROFILE=1
debug: depend
@echo -e "################################"
@echo -e "#### building in debug mode ####"
@echo -e "################################\n"
@$(MAKE) -f $(THIS_FILE) --no-print-directory build DEBUG=1
verbose: depend
@echo -e "##################################"
@echo -e "#### building in verbose mode ####"
@echo -e "##################################\n"
@$(MAKE) -f $(THIS_FILE) --no-print-directory build DEBUG=1 VERBOSE=1
###############################################################################
.SUFFIXES: .cpp .o
.cpp.o:
$(CXX) -c $< $(CFLAGS) $(INCLUDE_DIRS) $(MACROS) -o $@
@echo
build: $(OBJECTS)
$(CXX) $(OBJECTS) $(LFLAGS) $(LIB_DIRS) $(LIBS) -o $(A.OUT)
@echo
###############################################################################
depend:
makedepend -f- -Y $(SOURCES) > Makefile.depend 2> /dev/null
# gccmakedep -- -I./ -MM -- $(SOURCES)
# $(CXX) -MM -I./ $(SOURCES) > Makefile.depend
# $(CXX) -MM $(INCLUDE_DIRS) $(SOURCES) > Makefile.depend
@echo
clean:
rm -f $(OBJECTS)
fullclean:
rm -f $(shell find -name '*.o') Makefile.depend std err $(A.OUT)
remake: clean all
###############################################################################
-include Makefile.depend
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.