diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-11-03 01:31:16 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-11-03 01:31:16 +0000 |
commit | 10443a1398f3d4d0842e693eabbfaa82beab5d21 (patch) | |
tree | 3b7ce1ba88c6b89e866433f313a0062142cc2825 /cpu8/cpu_mux/Makefile | |
parent | 4a111c26d5d1030669975700558799932b2d86bd (diff) | |
download | cpu8-10443a1398f3d4d0842e693eabbfaa82beab5d21.tar.gz cpu8-10443a1398f3d4d0842e693eabbfaa82beab5d21.zip |
Add CPU MUX
Diffstat (limited to 'cpu8/cpu_mux/Makefile')
-rw-r--r-- | cpu8/cpu_mux/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpu8/cpu_mux/Makefile b/cpu8/cpu_mux/Makefile new file mode 100644 index 0000000..d3417a5 --- /dev/null +++ b/cpu8/cpu_mux/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_mux + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm
\ No newline at end of file |