Merge branch 'master' into discrete-tests

This commit is contained in:
2022-06-03 12:20:14 +03:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
~*
/bin
bin
/.vscode
+2 -2
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) $@ $?
########################################################################################################################