File: makefile.in

package info (click to toggle)
gambc 3.0-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 14,928 kB
  • ctags: 5,931
  • sloc: ansic: 295,198; lisp: 33,097; perl: 1,730; makefile: 760; sed: 448; sh: 215
file content (59 lines) | stat: -rw-r--r-- 1,318 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# makefile for Gambit-C miscellanea

# Copyright (C) 1994-1997 by Marc Feeley, All Rights Reserved.

PACKAGE = @PACKAGE@
VERSION = @VERSION@

srcdir = @srcdir@
VPATH = @srcdir@
srcdirpfx = @srcdirpfx@

INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@

prefix = @prefix@
emacsdir = $(prefix)/share/emacs/site-lisp

.SUFFIXES:

DISTFILES = makefile.in readme bench.tgz \
proj_msc.zip conf_msc conf_msc.sed conf_mpp.sed \
proj_wat.zip conf_wat conf_wat.sed conf_wpp.sed conf_win.sed \
proj_bor.zip conf_bor conf_bor.sed conf_bpp.sed \
conf_dj conf_dj.sed conf_dpp.sed \
proj_cw.hqx \
gambit.el

all:

install: all
	$(srcdirpfx)../mkidirs $(emacsdir)
	$(INSTALL_DATA) gambit.el $(emacsdir)

uninstall:
	rm -f $(emacsdir)/gambit.el

mostlyclean:

clean: mostlyclean

distclean: clean
	rm -f makefile

realclean: distclean

dist:
	@echo "Copying distribution files"
	@for file in $(DISTFILES); do \
	  ln $(srcdirpfx)$$file ../$(PACKAGE)$(VERSION)/misc 2> /dev/null \
	    || cp -p $(srcdirpfx)$$file ../$(PACKAGE)$(VERSION)/misc; \
	done

makefile: ../config.status makefile.in
	cd .. && CONFIG_FILES=misc/$@ CONFIG_HEADERS= ./config.status

# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: