diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-11-04 20:02:03 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-11-04 20:02:03 +0000 |
commit | d19d2ab5740cdf7ffd950bddaa4bafd4976c2fed (patch) | |
tree | b629cd3f8f8aa440d3ff51f79ab7a9be3355219b /cpu8/cpu_dmux/Makefile | |
parent | 10443a1398f3d4d0842e693eabbfaa82beab5d21 (diff) | |
download | cpu8-d19d2ab5740cdf7ffd950bddaa4bafd4976c2fed.tar.gz cpu8-d19d2ab5740cdf7ffd950bddaa4bafd4976c2fed.zip |
Add DMUX
Diffstat (limited to 'cpu8/cpu_dmux/Makefile')
-rw-r--r-- | cpu8/cpu_dmux/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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 + + + |