Skip to content

Instantly share code, notes, and snippets.

@jeremywrnr
Last active May 7, 2019 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremywrnr/11046931 to your computer and use it in GitHub Desktop.
Save jeremywrnr/11046931 to your computer and use it in GitHub Desktop.
makefile for HSPICE
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