blob: f34909301e8a220e81f79a2928eb6c9c1bd628be (
plain) (
blame)
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
|
--- Makefile.in.orig Wed Aug 16 01:32:49 2000
+++ Makefile.in Sat Nov 11 14:45:15 2000
@@ -32,26 +32,24 @@
LIBS="$(LIBS)" \
"DEFS=$(PROG_DEFS)" \
"CC=$(CC)" \
- DEBUG=-O
+ "DEBUG=$(CFLAGS)"
makelibs:
for lib in $(MANDATORY_LIBS) ; do \
- ( cd libs/src/$$lib ; make install "INSTALL=$(INSTALL_CMD)" "DEFS=$(LIB_DEFS)" RANLIB=$(RANLIB) "CC=$(CC)" DEBUG=-O ) \
+ ( cd libs/src/$$lib ; make install "INSTALL=$(INSTALL_CMD)" "DEFS=$(LIB_DEFS)" RANLIB=$(RANLIB) "CC=$(CC)" "DEBUG=$(CFLAGS)" ) \
; done
install: build
for i in $(DAEMONDIR) $(BINDIR) $(MANDIR)/man5 $(MANDIR)/man8 ; do \
test -d $$i || mkdir -p $$i ; done
$(INSTALL_CMD) -m 755 xinetd/xinetd $(DAEMONDIR)
- $(INSTALL_CMD) -m 755 xinetd/itox $(DAEMONDIR)
- $(INSTALL_CMD) -m 755 xinetd/xconv.pl $(DAEMONDIR)
+ $(INSTALL_CMD) -m 755 xinetd/xconv.pl $(prefix)/bin/xconv
$(INSTALL_CMD) -m 644 xinetd/xinetd.conf.man $(MANDIR)/man5/xinetd.conf.5
$(INSTALL_CMD) -m 644 xinetd/xinetd.log.man $(MANDIR)/man8/xinetd.log.8
$(INSTALL_CMD) -m 644 xinetd/xinetd.man $(MANDIR)/man8/xinetd.8
- $(INSTALL_CMD) -m 644 xinetd/itox.8 $(MANDIR)/man8/itox.8
@echo "You must put your xinetd.conf in /etc/xinetd.conf"
@echo "There is a sample config file in xinetd/sample.conf and you can"
- @echo "use xconv.pl to convert your old inetd.conf file to an xinetd format"
+ @echo "use xconv to convert your old inetd.conf file to an xinetd format"
distclean: clean
rm -f config.cache config.log Makefile config.status xinetd/itox
|