From 4a111c26d5d1030669975700558799932b2d86bd Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Mon, 15 Oct 2018 21:22:42 +0100 Subject: Add CPU XOR --- cpu8/cpu_xor/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 cpu8/cpu_xor/Makefile (limited to 'cpu8/cpu_xor/Makefile') diff --git a/cpu8/cpu_xor/Makefile b/cpu8/cpu_xor/Makefile new file mode 100644 index 0000000..9d49cb1 --- /dev/null +++ b/cpu8/cpu_xor/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_xor + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm \ No newline at end of file -- cgit v1.2.3