ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/libio/mem/Makefile.in
Revision: 69
Committed: Tue Oct 4 16:09:51 2005 UTC (18 years, 6 months ago) by adx
File size: 839 byte(s)
Log Message:
- splitted ircd/libio, all headers connected with libio sources have been
  moved for internal use only. To use libio interface, include "libio.h"
  (which is already done in "stdinc.h")


File Contents

# Content
1 # $Id: Makefile.in 33 2005-10-02 20:50:00Z knight $
2
3 CC = @CC@
4 SED = @SED@
5 STDOUT = @STDOUT@
6 CFLAGS = @IRC_CFLAGS@
7 MKDEP = @MKDEP@
8 MV = @MV@
9 RM = @RM@
10
11 IRCDLIBS = @LIBS@ $(SSL_LIBS)
12
13 INCLUDES = -I.. -I../../include
14 CPPFLAGS = ${INCLUDES} -DIN_LIBIO @CPPFLAGS@
15
16 SRCS = \
17 @BALLOC_C@ \
18 dbuf.c \
19 memory.c
20
21 OBJS = ${SRCS:.c=.o}
22
23 default: build
24 build: all
25 all: depend $(OBJS)
26
27 .c.o:
28 ${CC} ${CPPFLAGS} ${CFLAGS} -c $< -o $@
29
30 depend: .depend
31 .depend:
32 ${MKDEP} ${CPPFLAGS} ${SRCS} ${STDOUT}
33 @${SED} -e '/^# Autogenerated - do not delete/,$$d' <Makefile >Makefile.depend
34 @echo "# Autogenerated - do not delete" >>Makefile.depend
35 @echo "include .depend" >> Makefile.depend
36 @${MV} Makefile.depend Makefile
37
38 clean:
39 ${RM} -f $(OBJS)
40
41 distclean: clean
42 ${RM} -f Makefile .depend
43
44 install:
45
46 .PHONY: distclean build

Properties

Name Value
svn:eol-style native
svn:keywords "Id Revision"