summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/appl/ftp/common/Makefile.in
blob: b00bd0a4de1327a5450f8c7a1be8a46258466f28 (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
53
54
55
# $Id: Makefile.in,v 1.23 1999/03/10 19:01:11 joda Exp $

SHELL		= /bin/sh

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

CC 	= @CC@
AR	= ar
RANLIB 	= @RANLIB@
DEFS 	= @DEFS@
CFLAGS 	= @CFLAGS@ $(WFLAGS)
WFLAGS = @WFLAGS@

INSTALL = @INSTALL@

prefix 	= @prefix@

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

libcommon_OBJS = sockbuf.o buffer.o

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

all: $(LIB)

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

$(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

.PHONY: all install uninstall clean cleandir distclean
OpenPOWER on IntegriCloud