File:
[ELWIX - Embedded LightWeight unIX -] /
libaitcfg /
src /
Makefile.in
Revision
1.7:
download - view:
text,
annotated -
select for diffs -
revision graph
Wed May 18 15:18:10 2016 UTC (8 years, 7 months ago) by
misho
Branches:
MAIN
CVS tags:
cfg9_5,
cfg9_4,
cfg9_3,
cfg9_2,
cfg9_1,
cfg8_2,
cfg8_1,
cfg8_0,
cfg7_9,
cfg7_8,
HEAD,
CFG9_4,
CFG9_3,
CFG9_2,
CFG9_1,
CFG9_0,
CFG8_1,
CFG8_0,
CFG7_9,
CFG7_8,
CFG7_7
7.7
#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
# AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.7 2016/05/18 15:18:10 misho Exp $
#
prefix = @prefix@
exec_prefix = @exec_prefix@
includedir = @includedir@
libdir = @libdir@
LIBS = @LIBS@
CC = @CC@
RANLIB = @RANLIB@
MKDEP = @MKDEP@
INC = ../inc
LIB = ../lib
LDADD = ${LIBS}
CFLAGS = -I. -I${INC} -I${includedir} -Wall @CFLAGS@
LDFLAGS = -L. -L${LIB} -L${libdir} @LDFLAGS@
SRCS = aitcfg.c parse.c queue.c pwd.c pq.c
OBJS = aitcfg.o parse.o queue.o pwd.o pq.o
LIBSO = libaitcfg.so
LIBA = libaitcfg.a
all: depend \
${LIBA} \
${LIBSO}
depend:
${MKDEP} ${CFLAGS} ${SRCS}
clean:
@rm -f *.o *~ .depend
install:
.c.o:
${CC} -c ${CFLAGS} $<
${LIBA}: ${OBJS}
${AR} -rc ${LIB}/$@ ${OBJS}
${RANLIB} ${LIB}/$@
${LIBSO}: ${OBJS}
${CC} ${LDFLAGS} -shared -o ${LIB}/$@ -Wl,-x,-soname,$@ ${OBJS} ${LDADD}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>