aboutsummaryrefslogtreecommitdiff
path: root/src/appl/user_user/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl/user_user/Makefile.in')
-rw-r--r--src/appl/user_user/Makefile.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/appl/user_user/Makefile.in b/src/appl/user_user/Makefile.in
index 4e523ce..b7ef965 100644
--- a/src/appl/user_user/Makefile.in
+++ b/src/appl/user_user/Makefile.in
@@ -2,15 +2,14 @@ CFLAGS = $(CCOPTS) $(DEFS) -DDEBUG
LDFLAGS = -g
COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
-DBMLIB=
all::
-KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
-DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
+KLIB = -lkrb5 -lcrypto $(COMERRLIB)
+DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB)
uuclient: client.o $(DEPKLIB)
- $(CC) $(CFLAGS) -o uuclient client.o $(KLIB) $(LIBS)
+ $(LD) $(LDFLAGS) $(LDARGS) -o uuclient client.o $(KLIB) $(LIBS)
client.o: $(srcdir)/client.c
@@ -21,7 +20,7 @@ clean::
$(RM) client.o uuclient
uuserver: server.o $(DEPKLIB)
- $(CC) $(CFLAGS) -o uuserver server.o $(KLIB) $(LIBS)
+ $(LD) $(LDFLAGS) $(LDARGS) -o uuserver server.o $(KLIB) $(LIBS)
server.o: $(srcdir)/server.c