File: Makefile

package info (click to toggle)
xlispstat 3.52.14-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,560 kB
  • ctags: 12,676
  • sloc: ansic: 91,357; lisp: 21,759; sh: 1,525; makefile: 521; csh: 1
file content (28 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (3)
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
SRCDIR=../..

SRC=common.lsp common2.lsp common3.lsp conditns.lsp loadfsl.lsp pathname.lsp \
    stepper.lsp shlib.lsp

FSL=common.fsl common2.fsl common3.fsl conditns.fsl loadfsl.fsl pathname.fsl \
    stepper.fsl shlib.fsl

.SUFFIXES: .lsp .fsl

.lsp.fsl:
	echo "(compile-file \"$<\") (exit)" \
	  | ../sources/xlisp.bin ../sources/cmpload

all: $(FSL)

$(FSL): $(SRC)

# this is used if compiling in a subdirectory of the xlispstat tree
$(SRC):
	ln -s $(SRCDIR)/$@ $@

# this is used for creating the separate xlisp only distribution
srcfiles:
	(cd $(SRCDIR); tar cf - $(SRC)) | tar xf -

clean:
	rm -f *.fsl