diff --git a/makefile b/makefile index 73002158..2bb29f4d 100644 --- a/makefile +++ b/makefile @@ -3,6 +3,8 @@ J=-j4 o3: @$(MAKE) $(J) -C obj/o3 o3 +o3g: + @$(MAKE) $(J) -C obj/o3g o3g debug: @$(MAKE) -C obj/debug debug rtperf: @@ -14,6 +16,8 @@ rtverify: o3-clean: @$(MAKE) -C obj/o3 clean +o3g-clean: + @$(MAKE) -C obj/o3g clean debug-clean: @$(MAKE) -C obj/debug clean rtperf-clean: diff --git a/obj/o3g/makefile b/obj/o3g/makefile new file mode 120000 index 00000000..26ebd524 --- /dev/null +++ b/obj/o3g/makefile @@ -0,0 +1 @@ +../subMakefile \ No newline at end of file diff --git a/obj/subMakefile b/obj/subMakefile index 7acc949f..8e3a8e7e 100644 --- a/obj/subMakefile +++ b/obj/subMakefile @@ -7,6 +7,8 @@ CMD=$(CC) -std=gnu11 -Wall -Wno-unused-function -fms-extensions ${CCFLAGS} $(FLA o3: FLAGS=-O3 o3: gen +o3g: FLAGS=-O3 -g +o3g: gen debug: FLAGS=-g -DDEBUG debug: gen rtperf: FLAGS=-O3 -DRT_PERF