diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-12-03 00:28:25 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-12-03 00:28:25 +0000 |
commit | 7e00e4960af68e6c26104cca26cdf47f4f4095a7 (patch) | |
tree | 822ec720ca81994c9e7e534064d472d3debbb6f7 /cpu8/cpu_srlatch/Makefile | |
parent | 8a42a00d1392d882d4241ae92fbf7845f6791c5f (diff) | |
download | cpu8-7e00e4960af68e6c26104cca26cdf47f4f4095a7.tar.gz cpu8-7e00e4960af68e6c26104cca26cdf47f4f4095a7.zip |
Added initial CPU SR-latch
Diffstat (limited to 'cpu8/cpu_srlatch/Makefile')
-rw-r--r-- | cpu8/cpu_srlatch/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu8/cpu_srlatch/Makefile b/cpu8/cpu_srlatch/Makefile new file mode 100644 index 0000000..acccab7 --- /dev/null +++ b/cpu8/cpu_srlatch/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_srlatch + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm + + + |