aboutsummaryrefslogtreecommitdiff
path: root/pymake.conf
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-11 14:33:07 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-11 14:33:07 +0000
commit67c0930cbe7d0646cf4e4dee157ea553ee8a045a (patch)
tree3d3a751c871bd93077933c8f7daf28beba6b337a /pymake.conf
parent4a2cacc7975b635b32c7cd7c6ac274639477ed8c (diff)
downloadlibbu++-67c0930cbe7d0646cf4e4dee157ea553ee8a045a.tar.gz
libbu++-67c0930cbe7d0646cf4e4dee157ea553ee8a045a.tar.bz2
libbu++-67c0930cbe7d0646cf4e4dee157ea553ee8a045a.tar.xz
libbu++-67c0930cbe7d0646cf4e4dee157ea553ee8a045a.zip
Bugfixes, and pymake removal.
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