aboutsummaryrefslogtreecommitdiff
path: root/src/appl/user_user/Makefile.in
blob: 6764c333a69a540306a9f1f8f5ec3d47192e373d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
srcdir = @srcdir@
VPATH = @srcdir@
 
DEFS = @DEFS@
LIBS = @LIBS@
 
CFLAGS = -g $(DEFS) -DDEBUG
LDFLAGS = -g

BUILDTOP=../..
SRCTOP = $(srcdir)/$(BUILDTOP)
TOPLIBD = $(BUILDTOP)/lib
ISODELIB=$(TOPLIBD)/libisode.a
COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
DBMLIB=

all::

KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)

uuclient: client.o
	$(CC) $(CFLAGS) -o uuclient client.o $(KLIB) $(LIBS)

client.o:	$(srcdir)/client.c

all:: uuclient


clean::
	$(RM) client.o uuclient

uuserver: server.o
	$(CC) $(CFLAGS) -o uuserver server.o $(KLIB) $(LIBS)

server.o:	$(srcdir)/server.c

all:: uuserver


clean::
	$(RM) server.o uuserver