7913918505
Tools for schematic capture, netlist creation, and analog and digital simulation (log), IC mask layout, extraction, and DRC (wol), simple chip compilation (wolcomp), MOSIS fabrication request generation (mosis), netlist comparison (netcmp), data plotting (view) and postscript graphics editing (until). These tools were used exclusively for the design and test of all the integrated circuits described in Carver Mead's book "Analog VLSI and Neural Systems". Until was used as the primary tool for figure creation for the book. The directory also contains an example of an analog VLSI chip that was designed and fabricated with these tools, and an example of an Actel field-programmable gate array design that was simulated and converted to Actel format with these tools (example). These tools were originally written for HP 200 Series ("Chipmunk") computers, and were later ported to Unix and the X Window System.
70 lines
1.9 KiB
Makefile
70 lines
1.9 KiB
Makefile
# System Makefile for the Chipmunk Tools
|
|
#
|
|
# Copyright (C) 1983, 1990, 1993 California Institute of Technology.
|
|
# Authors: Dave Gillespie, Marwan Jabri
|
|
# Maintainers: John Lazzaro and Dave Gillespie
|
|
# Maintainers's address: lazzaro@cs.berkeley.edu;
|
|
# EECS/571 Evans Hall/UCB/Berkeley CA 94720
|
|
# daveg@synaptics.com;
|
|
# Send questions, bug fixes, to these addresses.
|
|
#
|
|
#
|
|
#This program is free software; you can redistribute it and/or modify
|
|
#it under the terms of the GNU General Public License as published by
|
|
#the Free Software Foundation (Version 1, 1989).
|
|
#
|
|
#This program is distributed in the hope that it will be useful,
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
#GNU General Public License for more details.
|
|
#
|
|
#You should have received a copy of the GNU General Public License
|
|
#along with this program; see the file COPYING. If not, write to
|
|
#the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
# This makefile allows you to make and install the entire
|
|
# chipmunk toolset in one command. It assume you have all of the
|
|
# tools in the distribution; if not, comment out the tools you
|
|
# do not have in the lines below.
|
|
|
|
PACKAGES= \
|
|
psys/src \
|
|
log/src \
|
|
wol \
|
|
wolcomp \
|
|
until/V1.2 \
|
|
view
|
|
# mosis \
|
|
# util \
|
|
# netcmp \
|
|
|
|
makeonly: lib bin
|
|
for i in $(PACKAGES) ;\
|
|
do (cd $$i ; echo "Making in $$i..."; make $(MFLAGS)); done
|
|
|
|
World: lib bin clean install
|
|
|
|
lib:
|
|
-mkdir lib
|
|
|
|
bin:
|
|
-mkdir bin
|
|
|
|
clean:
|
|
for i in $(PACKAGES) ;\
|
|
do (cd $$i ; echo "Making clean in $$i..."; \
|
|
make clean); done
|
|
|
|
install:
|
|
for i in $(PACKAGES) ;\
|
|
do (cd $$i ; echo "Making install in $$i..."; \
|
|
make install); done
|
|
|
|
create:
|
|
for i in $(PACKAGES) ;\
|
|
do (cd $$i ; echo "Making create in $$i..."; \
|
|
make create); done
|
|
|
|
|
|
|