summaryrefslogtreecommitdiff
path: root/apps/drwho/Makefile
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-04-09 17:14:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-04-09 17:14:24 +0000
commitb6f30a7aac5793854b319e7a824787d10d48d29d (patch)
treef185d49769c4f16ec10d4a446672d3f2e20fedd6 /apps/drwho/Makefile
parent3f2c5466c98296f743b01ad6245ec8ca1dad53cc (diff)
downloadATCD-b6f30a7aac5793854b319e7a824787d10d48d29d.tar.gz
ChangeLogTag: Wed Apr 09 19:13:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'apps/drwho/Makefile')
-rw-r--r--apps/drwho/Makefile22
1 files changed, 19 insertions, 3 deletions
diff --git a/apps/drwho/Makefile b/apps/drwho/Makefile
index be9c94e3841..2d5f2aecd75 100644
--- a/apps/drwho/Makefile
+++ b/apps/drwho/Makefile
@@ -77,16 +77,29 @@ ifeq (1,$(VXWORKS))
# drwho will not build on vxworks
all clean realclean:
@echo drwho will not build on vxworks
-
else # VXWORKS
+
ifeq (1,$(CHORUS))
# since protocols/rwhod.h is not available under Chorus
# drwho will not build on chorus
all clean realclean:
@echo drwho will not build on chorus
-
else # CHORUS
+ ifeq (1,$(mingw32))
+ # since protocols/rwhod.h is not available under mingw32
+ # drwho will not build on mingw32
+ all clean realclean:
+ @echo drwho will not build on mingw32
+ else # mingw32
+
+ ifeq (1,$(cygwin32))
+ # since protocols/rwhod.h is not available under cygwin32
+ # drwho will not build on cygwin32
+ all clean realclean:
+ @echo drwho will not build on cygwin32
+ else # cygwin32
+
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
@@ -102,9 +115,12 @@ drwho-client: $(addprefix $(VDIR),$(CLIENT-OBJ)) $(addprefix $(VDIR),$(SHARED-OB
drwho-server: $(addprefix $(VDIR),$(SERVER-OBJ)) $(addprefix $(VDIR),$(SHARED-OBJ))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS)
+
+ endif #cygwin32
+ endif #mingw32
endif #Chorus
endif #VxWorks
-
+
#----------------------------------------------------------------------------
# Dependencies
#----------------------------------------------------------------------------