Merge pull request #322 from ucb-bar/fix-grep-filter

make sure grep filter only omits .h files
This commit is contained in:
Abraham Gonzalez
2019-11-01 18:59:59 -07:00
committed by GitHub

View File

@@ -80,7 +80,7 @@ harness_macro_temp: $(HARNESS_SMEMS_CONF)
# remove duplicate files and headers in list of simulation file inputs
########################################################################################
$(sim_common_files): $(sim_files) $(sim_top_blackboxes) $(sim_harness_blackboxes)
awk '{print $1;}' $^ | sort -u | grep -v '.*\.h' > $@
awk '{print $1;}' $^ | sort -u | grep -v '.*\.h$$' > $@
#########################################################################################
# helper rule to just make verilog files