diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-07-12 16:46:04 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-07-12 16:46:04 +0000 |
commit | fd9d16ef89a93016a5000973a93c78fe9fd945f5 (patch) | |
tree | adbb519e2f4f2604cdbdc4fd60d7a87b84f96487 /PACE/include/makeinclude | |
parent | 883e498d8e84b19f83ad0190ceb4a972a698b1ef (diff) | |
download | ATCD-fd9d16ef89a93016a5000973a93c78fe9fd945f5.tar.gz |
ChangeLogTag: Wed Jul 12 11:45:34 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'PACE/include/makeinclude')
-rw-r--r-- | PACE/include/makeinclude/rules.common.GNU | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/PACE/include/makeinclude/rules.common.GNU b/PACE/include/makeinclude/rules.common.GNU index 6fad52ece90..88602d97a81 100644 --- a/PACE/include/makeinclude/rules.common.GNU +++ b/PACE/include/makeinclude/rules.common.GNU @@ -1,7 +1,7 @@ #---------------------------------------------------------------------------- -# $Id$ +# $Id$ # -# Common rules for building PACE targets +# Common rules for building PACE targets #---------------------------------------------------------------------------- ifndef PACE_ROOT @@ -40,39 +40,40 @@ endif # PACE_SYSNAME == Linux # IRIX (32 bit) IRIX (unconfirmed) # HPUX HP-UX -# Solaris is POSIX - change this when the platform directories get -# squared away -#ifeq ($(PACE_SYSNAME),SunOS || $(PACE_SYSNAME),Linux) - ifeq ($(PACE_SYSNAME),SunOS) -# Hard code special cases for SunOS 5.6 and 5.7 since we -# need a 3 digit version number for comparison purposes. + # Hard code special cases for SunOS 5.6 and 5.7 since we + # need a 3 digit version number for comparison purposes. ifeq ($(PACE_SYSVER),57) PACE_SYSVER := $(PACE_SYSVER)0 endif # PACE_SYSVER ifeq ($(PACE_SYSVER),56) PACE_SYSVER := $(PACE_SYSVER)0 endif # PACE_SYSVER -VPATH :=.:posix:$(VPATH) -CFLAGS += -DPACE_SUNOS=$(PACE_SYSVER) + VPATH :=.:posix:$(VPATH) + CFLAGS += -DPACE_SUNOS=$(PACE_SYSVER) endif ifeq ($(PACE_SYSNAME),NT) -VPATH :=.:win32:$(VPATH) -CFLAGS += -DPACE_WIN32=$(PACE_SYSVER) + VPATH :=.:win32:$(VPATH) + CFLAGS += -DPACE_WIN32=$(PACE_SYSVER) endif ifeq ($(PACE_SYSNAME),LynxOS) -VPATH :=.:posix:$(VPATH) -CFLAGS += -DPACE_LYNXOS=$(PACE_SYSVER) + VPATH :=.:posix:$(VPATH) + CFLAGS += -DPACE_LYNXOS=$(PACE_SYSVER) +endif + +ifeq ($(PACE_SYSNAME),OSF1) + VPATH :=.:posix:$(VPATH) + CFLAGS += -DPACE_OSF1=$(PACE_SYSVER) endif ifeq ($(PACE_SYSNAME),VxWorks) -VPATH :=.:vxworks:$(VPATH) -CFLAGS += -DPACE_VXWORKS=$(PACE_SYSVER) + VPATH :=.:vxworks:$(VPATH) + CFLAGS += -DPACE_VXWORKS=$(PACE_SYSVER) endif ifeq ($(PACE_SYSNAME),Linux) -VPATH :=.:posix:$(VPATH) -CFLAGS += -DPACE_LINUX=$(PACE_SYSVER) + VPATH :=.:posix:$(VPATH) + CFLAGS += -DPACE_LINUX=$(PACE_SYSVER) endif |