mirror of https://github.com/YosysHQ/yosys.git
abc/blifparse files reorganization
This commit is contained in:
parent
61512b6f41
commit
7dad017c9c
2
Makefile
2
Makefile
|
@ -255,6 +255,7 @@ else
|
|||
include frontends/verilog/Makefile.inc
|
||||
include frontends/ilang/Makefile.inc
|
||||
include frontends/ast/Makefile.inc
|
||||
include frontends/blif/Makefile.inc
|
||||
|
||||
OBJS += passes/hierarchy/hierarchy.o
|
||||
OBJS += passes/cmds/select.o
|
||||
|
@ -267,7 +268,6 @@ OBJS += passes/cmds/plugin.o
|
|||
include passes/proc/Makefile.inc
|
||||
include passes/opt/Makefile.inc
|
||||
include passes/techmap/Makefile.inc
|
||||
include passes/abc/Makefile.inc
|
||||
|
||||
include backends/verilog/Makefile.inc
|
||||
include backends/ilang/Makefile.inc
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
OBJS += frontends/blif/blifparse.o
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
|
||||
ifeq ($(ENABLE_ABC),1)
|
||||
OBJS += passes/abc/abc.o
|
||||
OBJS += passes/abc/blifparse.o
|
||||
endif
|
||||
|
|
@ -5,6 +5,10 @@ OBJS += passes/techmap/dfflibmap.o
|
|||
OBJS += passes/techmap/maccmap.o
|
||||
OBJS += passes/techmap/libparse.o
|
||||
|
||||
ifeq ($(ENABLE_ABC),1)
|
||||
OBJS += passes/techmap/abc.o
|
||||
endif
|
||||
|
||||
ifneq ($(SMALL),1)
|
||||
OBJS += passes/techmap/iopadmap.o
|
||||
OBJS += passes/techmap/hilomap.o
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
# include <dirent.h>
|
||||
#endif
|
||||
|
||||
#include "blifparse.h"
|
||||
#include "frontends/blif/blifparse.h"
|
||||
|
||||
USING_YOSYS_NAMESPACE
|
||||
PRIVATE_NAMESPACE_BEGIN
|
Loading…
Reference in New Issue