diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-09 10:50:44 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-09 10:50:44 +0200 |
commit | ccf7b2e342cd4212ca2c2c94735a3f916b7d790f (patch) | |
tree | 2bd854165aa64cce2769cc2cb0172f93de4e620e /passes | |
parent | 696d7ed40ed9de48629e31a0c1cb7f1f586306e9 (diff) | |
download | yosys-ccf7b2e342cd4212ca2c2c94735a3f916b7d790f.tar.gz yosys-ccf7b2e342cd4212ca2c2c94735a3f916b7d790f.tar.bz2 yosys-ccf7b2e342cd4212ca2c2c94735a3f916b7d790f.zip |
Added mxe-based cross build for win32
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/techmap/Makefile.inc b/passes/techmap/Makefile.inc index 72998f87b..9152ff22d 100644 --- a/passes/techmap/Makefile.inc +++ b/passes/techmap/Makefile.inc @@ -23,9 +23,9 @@ passes/techmap/techmap.inc: techlibs/common/techmap.v passes/techmap/techmap.o: passes/techmap/techmap.inc -TARGETS += yosys-filterlib +TARGETS += yosys-filterlib$(EXE) GENFILES += passes/techmap/filterlib.o -yosys-filterlib: passes/techmap/filterlib.o - $(P) $(CXX) -o yosys-filterlib $(LDFLAGS) $^ $(LDLIBS) +yosys-filterlib$(EXE): passes/techmap/filterlib.o + $(P) $(CXX) -o yosys-filterlib$(EXE) $(LDFLAGS) $^ $(LDLIBS) |