-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
44 lines (30 loc) · 894 Bytes
/
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
# -*- Makefile -*- for the CLISP top-level directory
# This Makefile exists in order to support the standard GNU way of building:
# ./configure && make && make check
# -------------- Start of configurable section --------------------
# Programs used by "make":
RM = rm -f
@SET_MAKE@
# -------------- End of configurable section --------------------
SHELL = /bin/sh
all : force
cd src && $(MAKE) all
install : force
cd src && $(MAKE) install
installdirs : force
cd src && $(MAKE) installdirs
uninstall : force
cd src && $(MAKE) uninstall
check : force
cd src && $(MAKE) check
mostlyclean : force
cd src && $(MAKE) mostlyclean
clean : force
cd src && $(MAKE) clean
distclean : force
cd src && if test -f Makefile; then $(MAKE) distclean; fi
$(RM) Makefile
maintainer-clean : force
cd src && if test -f Makefile; then $(MAKE) maintainer-clean; fi
$(RM) Makefile
force :