-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.oct
More file actions
68 lines (63 loc) · 1.97 KB
/
Makefile.oct
File metadata and controls
68 lines (63 loc) · 1.97 KB
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
60
61
62
63
64
65
66
67
68
#/*
# * Revision Control Information
# *
# * $Source: /vol/opua/opua2/sis/sis-1.2/common/src/RCS/Makefile.oct,v $
# * $Author: sis $
# * $Revision: 1.5 $
# * $Date: 1994/07/15 22:53:30 $
# *
# */
# run this with make -i
#
# To compile jedi on the RS6000, add -lbsd to the LDFLAGS variable
# in the Makefile.
#
# To compile xsis, the graphical front end to sis, MIT X11R4 or X11R5
# is needed. xsis is based on the X Toolkit and Athena widget set. If
# you don't have this, just comment out the xsis lines in this file.
# All sis commands will work without xsis except plot_blif.
#
MACHINE = mips
SRCDIR = /projects/sis/sis-1.2/common/src
X11 = /usr/sww/X11
CAD = /projects/octtools/octtools/$(MACHINE)
CC = cc
SIS = $(SRCDIR)/sis
BIN = $(SRCDIR)/bin
all:
cd sis; make SIS=$(SIS) CAD=$(CAD) CC=$(CC); cd ..
cd jedi; make CAD=$(CAD) CC=$(CC); cd ..
cd espresso; make CAD=$(CAD) CC=$(CC); cd ..
cd nova; make CAD=$(CAD) SIS=$(SIS) CC=$(CC); cd ..
cd sred; make SIS=$(SIS) CC=$(CC); cd ..
cd stamina; make MACHINE=$(MACHINE) CC=$(CC) SIS=$(SIS); cd ..
cd vst2blif; make MACHINE=$(MACHINE) CC=$(CC); cd ..
cd blif2vst; make MACHINE=$(MACHINE) CC=$(CC); cd ..
cd xsis; make SIS=$(SIS) MACHINE=$(MACHINE) X11=$(X11) CC=$(CC); cd ..
-cp -p sis/sis $(BIN)
-cp -p jedi/jedi $(BIN)
-cp -p sred/sred $(BIN)
-cp -p stamina/bin/stamina $(BIN)
-cp -p nova/nova $(BIN)
-cp -p espresso/espresso $(BIN)
-cp -p vst2blif/vst2blif $(BIN)
-cp -p blif2vst/blif2vst $(BIN)
-cp -p xsis/xsis $(BIN)
strip $(BIN)/*
clean:
cd sis; make SIS=$(SIS) CAD=$(CAD) clean; cd ..
cd utility; make clean; cd ..
cd options; make clean; cd ..
cd jedi; make clean; cd ..
cd stamina; make clean; cd ..
cd sred; make clean; cd ..
cd nova; make clean; cd ..
cd espresso; make clean; cd ..
cd vst2blif; make clean; cd ..
cd blif2vst; make clean; cd ..
cd xsis; make clean; cd ..
cleanall: clean
-rm -rf $(BIN)/*
cd stamina; make cleanall; cd ..
cd sis; make strip_depend; rm -rf lib/*; cd ..
-rm -rf make.out Makefile