source: psi/trunk/mk.sh@ 188

Last change on this file since 188 was 63, checked in by dmik, 19 years ago

Psi: General: Renamed make.[cmd|sh] to mk.[cmd|sh] to avoid ambuguity with make[.exe].

File size: 287 bytes
RevLine 
[58]1#!/bin/sh
2
3## @todo (r=dmik) someone needs to add code to test
4## for mac and to set MAKEFILE accordingly. Don't forget
5## to uncomment the mac:MAKEFILE line in psi.pro!
6
7MAKEFILE=Makefile.unix
8MAKE=make
9
10if !(test -f $MAKEFILE); then
11 qmake -o $MAKEFILE;
12fi
13
14$MAKE -f $MAKEFILE "$@"
Note: See TracBrowser for help on using the repository browser.