Skip to content

Commit 6068b1c

Browse files
committed
unlinked dependencies
1 parent fdb4d1a commit 6068b1c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else
1313
fi
1414

1515
echo "Building common library/generators..." && \
16-
make install_inc && \
16+
make -C common install_inc && \
1717
make -C common install && \
1818
make -C pgen install
1919

common/tech.cc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
#include <config.h>
2727
#include <misc.h>
2828
#include <array.h>
29-
#include <act/lang.h>
30-
#include <act/passes/netlist.h>
3129
#include "tech.h"
3230

3331
#define BUF_SZ 10240
@@ -67,8 +65,11 @@ static void verify_range_table (const char *nm)
6765
}
6866
}
6967

70-
#define PTYPE EDGE_PFET
71-
#define NTYPE EDGE_NFET
68+
//#define PTYPE EDGE_PFET
69+
//#define NTYPE EDGE_NFET
70+
#define PTYPE 1
71+
#define NTYPE 0
72+
extern const char *act_dev_value_to_string (int);
7273

7374
/*------------------------------------------------------------------------
7475
*

0 commit comments

Comments
 (0)