Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/auriamg/macdylibbundler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Schmidt <git@ryandesign.com>2015-06-07 04:23:00 +0300
committerRyan Schmidt <git@ryandesign.com>2015-06-07 04:23:00 +0300
commitad6ac2a84d4f72e45a1adf985f97ec0f4aad9ed2 (patch)
treeb7d2417b7c212ecc3933e3e622a5bc13560951f1
parent559a4335710f552233d6ce2cb605884e178466dc (diff)
Support CXX makefile variable
-rw-r--r--makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/makefile b/makefile
index 7df3e8d..9cec9f5 100644
--- a/makefile
+++ b/makefile
@@ -4,12 +4,12 @@ PREFIX=/usr/local
all: dylibbundler
dylibbundler:
- g++ -c -I./src ./src/Settings.cpp -o ./Settings.o
- g++ -c -I./src ./src/DylibBundler.cpp -o ./DylibBundler.o
- g++ -c -I./src ./src/Dependency.cpp -o ./Dependency.o
- g++ -c -I./src ./src/main.cpp -o ./main.o
- g++ -c -I./src ./src/Utils.cpp -o ./Utils.o
- g++ -o ./dylibbundler ./Settings.o ./DylibBundler.o ./Dependency.o ./main.o ./Utils.o
+ $(CXX) -c -I./src ./src/Settings.cpp -o ./Settings.o
+ $(CXX) -c -I./src ./src/DylibBundler.cpp -o ./DylibBundler.o
+ $(CXX) -c -I./src ./src/Dependency.cpp -o ./Dependency.o
+ $(CXX) -c -I./src ./src/main.cpp -o ./main.o
+ $(CXX) -c -I./src ./src/Utils.cpp -o ./Utils.o
+ $(CXX) -o ./dylibbundler ./Settings.o ./DylibBundler.o ./Dependency.o ./main.o ./Utils.o
clean:
rm -f *.o