summaryrefslogtreecommitdiff
path: root/cpu8/cpu_half_adder/Makefile
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2018-11-05 20:57:50 +0000
committerFreeArtMan <dos21h@gmail.com>2018-11-05 20:57:50 +0000
commite943743711ae48839e6046ff427e2e40d8bd51de (patch)
tree166d11ef2f341c4c31d964400cbb8dd55d6076f7 /cpu8/cpu_half_adder/Makefile
parentd19d2ab5740cdf7ffd950bddaa4bafd4976c2fed (diff)
downloadcpu8-e943743711ae48839e6046ff427e2e40d8bd51de.tar.gz
cpu8-e943743711ae48839e6046ff427e2e40d8bd51de.zip
Add CPU HALF_ADDER
Diffstat (limited to 'cpu8/cpu_half_adder/Makefile')
-rw-r--r--cpu8/cpu_half_adder/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu8/cpu_half_adder/Makefile b/cpu8/cpu_half_adder/Makefile
new file mode 100644
index 0000000..544b14d
--- /dev/null
+++ b/cpu8/cpu_half_adder/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_half_adder
+
+make:
+ g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\
+ -o $(PROJECT) -lsystemc -lm
+
+
+