blob: 4b487fe57da4b3baf3a67fd489368b7ed19595e6 (
plain)
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
|
# -*- sh -*-
#This is a UNIX-only makefile. For other systems, get a makefile from
#src/mkfiles/
@SET_MAKE@
SHELL = /bin/sh
all:
cd src; $(MAKE) all
elf:
cd src; $(MAKE) elf
@echo Use make install-elf to install it.
runtests:
cd src; $(MAKE) runtests
demos:
cd demo; $(MAKE)
clean:
/bin/rm -f *~
cd src; $(MAKE) clean
cd demo; $(MAKE) clean
install:
cd src; $(MAKE) install
install-elf:
cd src; $(MAKE) install-elf
@echo ""
@echo "On some systems, e.g., linux, you may also have to run ldconfig."
@echo ""
install-links:
cd src; $(MAKE) install-links
#
distclean:
/bin/rm -f *~ Makefile config.status config.log config.cache files.pck
cd src; $(MAKE) distclean
cd demo; $(MAKE) distclean
#
|