summaryrefslogtreecommitdiff
path: root/xc/lib/Xdmcp
diff options
context:
space:
mode:
authorrws <empty>1989-12-16 17:09:13 +0000
committerrws <empty>1989-12-16 17:09:13 +0000
commit8e0ecb7be1b21a8b0d6d2e130e51cbd730e1b07e (patch)
tree459367fc9fab2f9d28ef4dd8d333361951b6e350 /xc/lib/Xdmcp
parente981032874a40b2714b7daa8655b436a810e28f8 (diff)
conditionally compile DES files
Diffstat (limited to 'xc/lib/Xdmcp')
-rw-r--r--xc/lib/Xdmcp/Imakefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/xc/lib/Xdmcp/Imakefile b/xc/lib/Xdmcp/Imakefile
index 2253a7f17..a5df4c357 100644
--- a/xc/lib/Xdmcp/Imakefile
+++ b/xc/lib/Xdmcp/Imakefile
@@ -15,8 +15,12 @@ OS_NAME_DEFINES = OsNameDefines
#if HasDESLibrary
DESDEFS = -DHASDES
+DESSRCS = Encrypt.c Decrypt.c
+DESOBJS = Encrypt.o Decrypt.o
#else
DESDEFS =
+DESSRCS =
+DESOBJS =
#endif
DEFINES = $(DESDEFS)
@@ -59,11 +63,10 @@ SRCS = \
Whead.c \
Alloc.c \
CmpKey.c \
- Encrypt.c \
- Decrypt.c \
DecKey.c \
GenKey.c \
- IncKey.c
+ IncKey.c \
+ $(DESSRCS)
OBJS = \
A8Eq.o \
@@ -101,11 +104,10 @@ OBJS = \
Whead.o \
Alloc.o \
CmpKey.o \
- Encrypt.o \
- Decrypt.o \
DecKey.o \
GenKey.o \
- IncKey.o
+ IncKey.o \
+ $(DESOBJS)
all::
#if DebugLibXdmcp && ProfileLibXdmcp