Updated init app

This commit is contained in:
Alex
2022-12-15 03:06:22 +02:00
parent d82d725f11
commit 0ce6433311
2 changed files with 15 additions and 15 deletions

View File

@ -33,7 +33,7 @@ INCLUDE_DIR = ../../../out/system/include
LDFLAGS := -Wl,-Map file.map
WARNCFLAG = -Wall -Wextra -Wmain
WARNCFLAG = -Wall -Wextra -Wno-main
CFLAGS := \
-I$(INCLUDE_DIR) \
@ -61,7 +61,7 @@ $(FILENAME): $(OBJ)
%.o: %.cpp $(HEADERS)
$(info Compiling $<)
$(CPP) $(CFLAGS) $(WARNCFLAG) -std=c++20 -fexceptions -c $< -o $@ -fno-rtti
$(CPP) $(CFLAGS) $(WARNCFLAG) -std=c++20 -c $< -o $@
%.o: %.S
$(info Compiling $<)