diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-13 07:19:39 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-13 07:19:39 +0200 |
commit | 9d61a62f96dc4897dadbf88f5f4ee199d20e0f8f (patch) | |
tree | d5be1c713beff0d45edce053b5633d38a7758a27 /src/synth | |
parent | 97bfa1b9660357f64af0c0d01ab3887e93ed5994 (diff) | |
download | ghdl-9d61a62f96dc4897dadbf88f5f4ee199d20e0f8f.tar.gz ghdl-9d61a62f96dc4897dadbf88f5f4ee199d20e0f8f.tar.bz2 ghdl-9d61a62f96dc4897dadbf88f5f4ee199d20e0f8f.zip |
synth: build_header was replaced by a Makefile target.
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/build_header.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/synth/build_header.sh b/src/synth/build_header.sh deleted file mode 100644 index 5733bd2d3..000000000 --- a/src/synth/build_header.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -{ -echo "/* This file is automatically generated by build_header.sh - DO NOT MODIFY */" -echo "enum Module_Id {" -grep -h "constant Module_Id :=" netlists.ads netlists-gates.ads | sed -e '/constant Module_Id :=/s/:.*://' -e 's/;/,/' -e 's/ *--.*$//' -echo "};" -} > ghdlsynth_gates.h |