fa33244f92
2) Changed Makedepend system to make individual dependency files, which should save time rebuilding dependencies by limiting the regeneration of dependency file for only modified source files.
17 lines
317 B
Makefile
17 lines
317 B
Makefile
SHELL = /bin/sh
|
|
|
|
|
|
all : irixdist tardist
|
|
|
|
|
|
irixdist :
|
|
cd ${OSGHOME}; [ -d irixdist ] || mkdir irixdist
|
|
cd ${OSGHOME}; \
|
|
/usr/sbin/gendist -sbase ${OSGHOME} -idb dist/Irix/osg.idb -spec dist/Irix/osg.spec -dist irixdist -all
|
|
|
|
|
|
tardist : irixdist
|
|
cd ${OSGHOME}/irixdist;\
|
|
tar cvf osg.tardist osg osg.idb osg.sw
|
|
|