diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-10-15 20:46:48 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-10-15 20:46:48 +0100 |
commit | 835baba906728e7bfc8023a67fa1e42f6af03ba0 (patch) | |
tree | 43a9cea08288ba6998f5547775e7348df343737e /cpu8/cpu_nand/Makefile | |
parent | cf62bb4ee147c5ab51ada2437ac876f627fbb542 (diff) | |
download | cpu8-835baba906728e7bfc8023a67fa1e42f6af03ba0.tar.gz cpu8-835baba906728e7bfc8023a67fa1e42f6af03ba0.zip |
Add CPU NAND
Diffstat (limited to 'cpu8/cpu_nand/Makefile')
-rw-r--r-- | cpu8/cpu_nand/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpu8/cpu_nand/Makefile b/cpu8/cpu_nand/Makefile new file mode 100644 index 0000000..528f57e --- /dev/null +++ b/cpu8/cpu_nand/Makefile @@ -0,0 +1,9 @@ +SYSTEMC_PATH=/home/fam/downloads/source/systemc/systemc-2.3.2 +SYSTEMC_INC=$(SYSTEMC_PATH)/src +SYSTEMC_LIB=$(SYSTEMC_PATH)/src/.libs + +PROJECT=cpu_nand + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm
\ No newline at end of file |