Menu

[r162]: / trunk / contrib / dge2vtk / Makefile  Maximize  Restore  History

Download this file

47 lines (33 with data), 1.3 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
###############################################################################
## Makefile ##
###############################################################################
A.OUT = dge2vtk
###############################################################################
#include Makefile.compiler
include Makefile.g++
#include Makefile.icpc
###############################################################################
HEADERS:= $(shell find -iname '*.hpp')
SOURCES:= $(shell find -iname '*.cpp')
OBJECTS:= $(SOURCES:%.cpp=%.o)
###############################################################################
all: depend $(OBJECTS)
$(CXX) $(OBJECTS) $(LFLAGS) $(LIB_DIRS) $(LIBS) -o $(A.OUT)
@echo
.SUFFIXES: .cpp .o
.cpp.o:
$(CXX) -c $< $(CFLAGS) $(INCLUDE_DIRS) $(MACROS) -o $@
@echo
depend:
# touch main.cpp
makedepend -f- -Y $(SOURCES) > Makefile.depend 2> /dev/null
# gccmakedep -- -I./ -MM -- $(SOURCES)
# $(CXX) -MM -I./ $(SOURCES) > Makefile.depend
@echo
clean:
rm -f $(OBJECTS)
fullclean:
rm -f $(shell find -name '*.o') std err Makefile.depend $(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.