aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/liblqr-1/files/patch-examples-Makefile
blob: f26062c58ef46dc86ff18f7b0ac9c0b27985e193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- examples/Makefile.orig  2009-05-09 20:41:30.000000000 +0400
+++ examples/Makefile   2009-05-12 20:52:42.000000000 +0400
@@ -63,17 +63,17 @@
 
 # linking
 $(tt1out) : $(tt1obj)
-   g++ $(LINKING_FLAGS) -o $(tt1out) $(tt1obj)
+   $(CXX) $(LINKING_FLAGS) -o $(tt1out) $(tt1obj)
 
 $(tt2out) : $(tt2obj)
-   g++ $(LINKING_FLAGS) -o $(tt2out) $(tt2obj)
+   $(CXX) $(LINKING_FLAGS) -o $(tt2out) $(tt2obj)
 
 # object building
 $(tt1).o : $(tt1).cpp $(tt1).h
-   g++ -c $(OBJ_BUILD_FLAGS) $(tt1).cpp
+   $(CXX) -c $(OBJ_BUILD_FLAGS) $(tt1).cpp
 
 $(tt2).o : $(tt2).cpp
-   g++ -c $(OBJ_BUILD_FLAGS) $(tt2).cpp
+   $(CXX) -c $(OBJ_BUILD_FLAGS) $(tt2).cpp
 
 #cleanup
 clean: