home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # install script. I should really make this a make install target.
- # I use this to build all four libraries (debug/not, with musickit/not)
- # and install them.
- cd /Net/darth/Users/don/Projects/Play/Games/gamekit_proj/gamekit-1
- cp Makefile.mk Makefile
- make clean
- # make the pswraps first so that we have the header
- make GKText.c
- cp GKText.h ../Headers/gamekit
- make gamekit
- make debug
- mv libgamekit.a libgamekit_mk.a
- mv libgamekit_g.a libgamekit_mk_g.a
- cp Makefile.nomk Makefile
- rm -rf obj debug_obj
- make gamekit
- make debug
- cp libgamekit.a libgamekit_g.a libgamekit_mk.a libgamekit_mk_g.a /usr/local/lib
- ranlib /usr/local/lib/libgamekit.a
- ranlib /usr/local/lib/libgamekit_g.a
- ranlib /usr/local/lib/libgamekit_mk.a
- ranlib /usr/local/lib/libgamekit_mk_g.a
- rm -rf /LocalDeveloper/Headers/gamekit
- cp -r ../Headers/gamekit /LocalDeveloper/Headers
- sndplay /LocalLibrary/Sounds/RedAlertSiren.snd
-