summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/appl/ftp/common/Makefile.in
blob: 9ce1aa598bd17f1b94f72b8ac95145f72b9e601b (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
43
44
45
46
47
48
49
50
51
52
# $Id: Makefile.in,v 1.17 1997/05/18 20:00:06 assar Exp $

SHELL		= /bin/sh

srcdir		= @srcdir@
top_srcdir	= @top_srcdir@
VPATH		= @srcdir@

CC 	= @CC@
AR	= ar
RANLIB 	= @RANLIB@
DEFS 	= @DEFS@
CFLAGS 	= @CFLAGS@

INSTALL = @INSTALL@

prefix 	= @prefix@

SOURCES = base64.c glob.c sockbuf.c buffer.c
OBJECTS = $(libcommon_OBJS)

libcommon_OBJS = base64.o glob.o sockbuf.o buffer.o

LIBNAME = $(LIBPREFIX)common
LIBEXT = a
LIBPREFIX = @LIBPREFIX@
LIB = $(LIBNAME).$(LIBEXT)

all: $(LIB)

.c.o:
	$(CC) -c $(CFLAGS) -I$(srcdir) -I../../../include $(DEFS) $<

$(LIB): $(libcommon_OBJS)
	rm -f $@
	ar cr $@ $(libcommon_OBJS)
	-$(RANLIB) $@

install:

uninstall:

TAGS: $(SOURCES)
	etags $(SOURCES)

clean cleandir:
	rm -f *~ *.o libcommon.a core \#*

distclean: 
	rm -f Makefile

$(OBJECTS): ../../../include/config.h
OpenPOWER on IntegriCloud