-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (24 loc) · 1.19 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
mql:
if [ `uname -s` = "SunOS" ]; then ${MAKE} -f Makefile.solaris; \
elif [ `uname -s` = "HP-UX" ]; then ${MAKE} -f Makefile.hpux; \
elif [ `uname -s` = "AIX" ]; then ${MAKE} -f Makefile.aix; \
elif [ `uname -s` = "IRIX64"]; then ${MAKE} -f Makefile.irix; \
fi
swig:
if [ `uname -s` = "SunOS" ]; then ${MAKE} -f Makefile.solaris swig; \
elif [ `uname -s` = "HP-UX" ]; then ${MAKE} -f Makefile.hpux swig; \
elif [ `uname -s` = "AIX" ]; then ${MAKE} -f Makefile.aix swig; \
elif [ `uname -s` = "IRIX64"]; then ${MAKE} -f Makefile.irix swig; \
fi
install:
if [ `uname -s` = "SunOS" ]; then ${MAKE} -f Makefile.solaris install; \
elif [ `uname -s` = "HP-UX" ]; then ${MAKE} -f Makefile.hpux install; \
elif [ `uname -s` = "AIX" ]; then ${MAKE} -f Makefile.aix install; \
elif [ `uname -s` = "IRIX64"]; then ${MAKE} -f Makefile.irix install; \
fi
clean:
if [ `uname -s` = "SunOS" ]; then ${MAKE} -f Makefile.solaris clean; \
elif [ `uname -s` = "HP-UX" ]; then ${MAKE} -f Makefile.hpux clean; \
elif [ `uname -s` = "AIX" ]; then ${MAKE} -f Makefile.aix clean; \
elif [ `uname -s` = "IRIX64"]; then ${MAKE} -f Makefile.irix clean; \
fi