diff options
Diffstat (limited to 'cpu8/cpu_gatedlatch/Makefile')
-rw-r--r-- | cpu8/cpu_gatedlatch/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu8/cpu_gatedlatch/Makefile b/cpu8/cpu_gatedlatch/Makefile new file mode 100644 index 0000000..8fa3701 --- /dev/null +++ b/cpu8/cpu_gatedlatch/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_gatedlatch + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm + + + |