File: Makefile

package info (click to toggle)
clue 19970309-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,376 kB
  • ctags: 2,652
  • sloc: lisp: 32,306; makefile: 101
file content (20 lines) | stat: -rw-r--r-- 742 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all:
	lisp -batch -load new-build

install:
	install -g root -o root -m 0644 clio-library.x86f  \
	$(DESTDIR)clio/usr/lib/cmucl/subsystems/clio-library.x86f
	install -g root -o root -m 0644 clue-library.x86f \
	$(DESTDIR)tmp/usr/lib/cmucl/subsystems/clue-library.x86f
	install -g root -o root -m 0644 pictures-library.x86f \
	$(DESTDIR)pictures/usr/lib/cmucl/subsystems/pictures-library.x86f
	install -g root -o root -m 0644 debian/copyright \
	$(DESTDIR)tmp/usr/doc/clue/copyright
	install -g root -o root -m 0644 debian/copyright \
	$(DESTDIR)clio/usr/doc/clio/copyright
	install -g root -o root -m 0644 debian/copyright \
	$(DESTDIR)pictures/usr/doc/pictures/copyright

clean:
	find . -name "*.x86f" -or -name "*.err" \
	| xargs rm ; true