Merge branch 'master' into discrete-tests

This commit is contained in:
Gregory Lirent 2022-06-03 12:20:14 +03:00
commit 06418c0b9c
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
~*
/bin
bin
/.vscode

View File

@ -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) $@ $?
########################################################################################################################