diff --git a/.gitignore b/.gitignore index 9d164c8..df7f465 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ ~* -/bin +bin /.vscode diff --git a/Makefile b/Makefile index e7d3905..719cfc6 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ RMRF = rm -rf AR = ar crs CP = cp -$(DEBUG_PATH)/obj/%.o: CFLAGS := $(CFLAGS) -DDEBUG -Og -fPIC -c -g3 -Wall +$(DEBUG_PATH)/obj/%.o: CFLAGS := $(CFLAGS) -DDEBUG -O0 -fPIC -c -g3 -Wall $(RELEASE_PATH)/obj/%.o: CFLAGS := $(CFLAGS) -DNDEBUG -O2 -fPIC -c ######################################################################################################################## @@ -91,7 +91,7 @@ clean: cd ./modules/libunic && $(MAKE) clean %.a: - $(AR) $@ $^ + $(AR) $@ $? ########################################################################################################################