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
624 B
Bash
12 lines
624 B
Bash
#!/bin/bash
|
|
|
|
export SOURCES=*.m # all source codes
|
|
export LIBS= # add any additional libraries like -ltiff etc.
|
|
export FRAMEWORKS=CoreData # add any additional Frameworks etc.
|
|
export INSTALL=true # will try to install on the Zaurus (using ssh)
|
|
export INSTALL_PATH=/Developer/Applications # override INSTALL_PATH for MacOS X machine Zaurus
|
|
export RUN=false # will try to run with X11 and mySTEP
|
|
export DEPENDS="quantumstep-coredata-framework"
|
|
export ROOT=$HOME/Documents/Projects/QuantumSTEP # project root
|
|
/usr/bin/make -f $ROOT/System/Sources/Frameworks/mySTEP.make $ACTION
|
|
|