From d19d2ab5740cdf7ffd950bddaa4bafd4976c2fed Mon Sep 17 00:00:00 2001
From: FreeArtMan <dos21h@gmail.com>
Date: Sun, 4 Nov 2018 20:02:03 +0000
Subject: Add DMUX

---
 cpu8/cpu_dmux/Makefile | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 cpu8/cpu_dmux/Makefile

(limited to 'cpu8/cpu_dmux/Makefile')

diff --git a/cpu8/cpu_dmux/Makefile b/cpu8/cpu_dmux/Makefile
new file mode 100644
index 0000000..6748df2
--- /dev/null
+++ b/cpu8/cpu_dmux/Makefile
@@ -0,0 +1,12 @@
+SYSTEMC_PATH=/home/fam/downloads/source/systemc/systemc-2.3.2
+SYSTEMC_INC=$(SYSTEMC_PATH)/src
+SYSTEMC_LIB=$(SYSTEMC_PATH)/src/.libs
+
+PROJECT=cpu_dmux
+
+make:
+	g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\
+		-o $(PROJECT) -lsystemc -lm
+
+
+
-- 
cgit v1.2.3