aboutsummaryrefslogtreecommitdiff
path: root/pymake.conf
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pymake.conf29
1 files changed, 0 insertions, 29 deletions
diff --git a/pymake.conf b/pymake.conf
deleted file mode 100644
index 16ed18e..0000000
--- a/pymake.conf
+++ /dev/null
@@ -1,29 +0,0 @@
1### pymake by ~3o~ph()g (neonphog.com) ###
2## This skeleton file was generated by pymake... please edit for your project.
3
4CXXFLAGS: -ggdb -fPIC
5LDFLAGS: -ggdb
6
7[BUILD]
8DIR: src
9COMMAND: lib
10OUTPUT: libbu++.a
11
12[TRIGGER]
13INPUT: .cpp #take input of *.cpp files
14OUTPUT: .o #output .o files
15COMMAND: g++ -fPIC -c {INPUT} {CXXFLAGS} -I{DIR} -o {OUTPUT}
16CHECK: g++ -M {INPUT} {CXXFLAGS} -I{DIR}
17
18### Executable command ###
19## Use this command if you want a simple executable
20[COMMAND]
21NAME: exe
22COMMAND: g++ {INPUT} {LDFLAGS} -o {OUTPUT}
23
24### Library command ###
25## Use this command if you wish to create a library
26[COMMAND]
27NAME: lib
28COMMAND: ar cr{ARFLAGS} {OUTPUT} {INPUT}
29