summaryrefslogtreecommitdiff
path: root/cpu8/cpu_xor/Makefile
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2018-10-15 21:22:42 +0100
committerFreeArtMan <dos21h@gmail.com>2018-10-15 21:22:42 +0100
commit4a111c26d5d1030669975700558799932b2d86bd (patch)
treea91d6eb650c51c588d1699b7a7c1d8296b47bfc0 /cpu8/cpu_xor/Makefile
parent0b7dea3a6db1faf4abee5b3e724aeb03a15843f3 (diff)
downloadcpu8-4a111c26d5d1030669975700558799932b2d86bd.tar.gz
cpu8-4a111c26d5d1030669975700558799932b2d86bd.zip
Add CPU XOR
Diffstat (limited to 'cpu8/cpu_xor/Makefile')
-rw-r--r--cpu8/cpu_xor/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpu8/cpu_xor/Makefile b/cpu8/cpu_xor/Makefile
new file mode 100644
index 0000000..9d49cb1
--- /dev/null
+++ b/cpu8/cpu_xor/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_xor
+
+make:
+ g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\
+ -o $(PROJECT) -lsystemc -lm \ No newline at end of file