Last active
May 7, 2019 22:33
-
-
Save jeremywrnr/11046931 to your computer and use it in GitHub Desktop.
makefile for HSPICE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILES = $(wildcard *.sp) | |
OUTPUT = $(FILES:.sp=.lis) | |
all: $(OUTPUT) | |
%.lis: %.sp | |
hspice $< > $@ | |
clean: | |
rm -f $(OUTPUT) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment