File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Project: cpp-gpengine
2
+ # Makefile created by Pablo Garcia Ganzalez
3
+ # Date: 10.11.2003
4
+
5
+ CPP = aCC
6
+ OBJ = simple.o
7
+ GPENGINELIB = ../../lib/cpp-gpengine-1.0.4.sl
8
+ LIBS = -L"../../lib"
9
+ CXXINCS = -I"../../include/" -I"/usr/include"
10
+ BIN = simple
11
+ CXXFLAGS = -AA -D_XOPEN_SOURCE=500 $(CXXINCS )
12
+
13
+ all : simple
14
+
15
+ clean :
16
+ rm -f $(OBJ ) $(BIN )
17
+
18
+ $(BIN ) : $(OBJ )
19
+ $(CPP ) $(OBJ ) $(GPENGINELIB ) -AA -o " simple" $(LIBS )
20
+
21
+ simple.o : simple.cpp
22
+ $(CPP ) -c simple.cpp -o simple.o $(CXXFLAGS )
23
+
24
+
Original file line number Diff line number Diff line change
1
+ # Project: cpp-gpengine
2
+ # Makefile created by Pablo Garcia Gonzalez
3
+ # Date: 11.11.2003
4
+
5
+ CPP = g++
6
+ OBJ = simple.o
7
+ LIBS = -L"/usr/lib" -L"../../lib" ../../lib/cpp-gpengine-1.0.4.a
8
+ CXXINCS = -I"../../include/" -I"/usr/include"
9
+ BIN = simple
10
+ CXXFLAGS = $(CXXINCS )
11
+
12
+ all : simple
13
+
14
+ clean :
15
+ rm -f $(OBJ ) $(BIN )
16
+
17
+ $(BIN ) : $(OBJ )
18
+ $(CPP ) $(OBJ ) -o " simple" $(LIBS )
19
+
20
+ simple.o : simple.cpp
21
+ $(CPP ) -c -Wall simple.cpp -o simple.o $(CXXFLAGS )
22
+
23
+
You can’t perform that action at this time.
0 commit comments