-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.in
47 lines (34 loc) · 1.06 KB
/
Makefile.in
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
#
# $Id: Makefile.in,v 1.10 2009/03/23 07:06:53 hoche Exp $
#
# Master makefile for the "ICB" Internet chat system.
# "make" - compile the sources.
# "make install" - compile sources, install binaries and man pages.
# "make clean" - delete most things that "make" generates.
# "make clobber" - delete config settings too.
# "make depend" - regenerate dependency lists.
# if we're lucky and have gnu make, we can do srcdir!=objdir
VPATH=@srcdir@
srcdir=@srcdir@
# While we shouldn't have to do this, some makes are broken.
SHELL= /bin/sh
# Directories to do a make in.
DIRS = icb
# Files to be removed from top level with "make clean".
CONFIGCLEAN = config.cache config.local config.h config.status \
config.log stamp-h Makefile icb/Makefile
default all depend: configure
@for dir in $(DIRS); do \
echo "Making $@ in $$dir"; \
( cd $$dir; $(MAKE) $@ ) \
done
clean install lint:
@for dir in $(DIRS); do \
echo "Making $@ in $$dir"; \
( cd $$dir; $(MAKE) $@ ) \
done
distclean:
make clean
-rm -f $(CONFIGCLEAN)
config:
sh $(srcdir)/configure