diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-10-15 21:22:11 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-10-15 21:22:11 +0100 |
commit | 51c648ebba9db30856dbf0e646fe275720b59c42 (patch) | |
tree | 2c4e737b10934384072fbcdbfca66a320c70140d /cpu8/cpu_not/Makefile | |
parent | 835baba906728e7bfc8023a67fa1e42f6af03ba0 (diff) | |
download | cpu8-51c648ebba9db30856dbf0e646fe275720b59c42.tar.gz cpu8-51c648ebba9db30856dbf0e646fe275720b59c42.zip |
Add CPU NOT
Diffstat (limited to 'cpu8/cpu_not/Makefile')
-rw-r--r-- | cpu8/cpu_not/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpu8/cpu_not/Makefile b/cpu8/cpu_not/Makefile new file mode 100644 index 0000000..2b56687 --- /dev/null +++ b/cpu8/cpu_not/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_not + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm
\ No newline at end of file |