From 8a42a00d1392d882d4241ae92fbf7845f6791c5f Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 13 Nov 2018 20:41:25 +0000 Subject: CPU add adder16 --- cpu8/cpu_adder16bit/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cpu8/cpu_adder16bit/Makefile (limited to 'cpu8/cpu_adder16bit/Makefile') diff --git a/cpu8/cpu_adder16bit/Makefile b/cpu8/cpu_adder16bit/Makefile new file mode 100644 index 0000000..7b8eee6 --- /dev/null +++ b/cpu8/cpu_adder16bit/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_adder16bit + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm + + + -- cgit v1.2.3