summaryrefslogtreecommitdiff
path: root/apps
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
commitf85ce2dbacf625e95e12f752527a63f481ee9c60 (patch)
treef185d49769c4f16ec10d4a446672d3f2e20fedd6 /apps
parentcb8baa53ad980f100ed794b5abf07d08e2409e3d (diff)
downloadATCD-f85ce2dbacf625e95e12f752527a63f481ee9c60.tar.gz
ChangeLogTag: Wed Apr 09 19:13:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'apps')
-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
#----------------------------------------------------------------------------