mirror of
https://github.com/gnustep/libs-gscoredata.git
synced 2025-03-13 10:51:59 +00:00
* NIB files of DataBuilder updated git-svn-id: svn+ssh://svn.gna.org/svn/gnustep@36598 72102866-910b-0410-8b05-ffd578937521
12 lines
690 B
Bash
Executable file
12 lines
690 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export SOURCES=*.m # all source codes
|
|
export LIBS="-lsqlite3" # add any additional libraries like -ltiff etc.
|
|
export FRAMEWORKS= # add any additional Frameworks etc.
|
|
export INSTALL=true # will try to install on the Zaurus (using ssh)
|
|
export INSTALL_PATH=/System/Library/Frameworks # override INSTALL_PATH for MacOS X machine Zaurus
|
|
export RUN=false # will try to run with X11 and mySTEP
|
|
export ROOT=$HOME/Documents/Projects/QuantumSTEP # project root
|
|
export DEPENDS="libsqlite3-0, quantumstep-cocoa-framework" # debian package dependencies (, separated list)
|
|
/usr/bin/make -f $ROOT/System/Sources/Frameworks/mySTEP.make $ACTION
|
|
|