|
|
| File: [Development] / projects / inventor / make / system (download)
Revision 1.6, Fri Jan 7 13:47:05 2005 UTC (12 years, 9 months ago) by jlim
Added support for Linux on IA64. |
usingIrix = 0 usingLinux = 0 usingIA64 = 0 usingFreeBSD = 0 usingDarwin = 0 UNAME = $(shell uname -sm | tr '[:upper:]' '[:lower:]') ifneq (, $(findstring irix, $(UNAME))) usingIrix = 1 endif ifneq (, $(findstring linux, $(UNAME))) usingLinux = 1 endif ifneq (, $(findstring ia64, $(UNAME))) usingIA64 = 1 endif ifneq (, $(findstring freebsd, $(UNAME))) usingFreeBSD = 1 endif ifneq (, $(findstring darwin, $(UNAME))) usingDarwin = 1 endif