Updated Makefile

This commit is contained in:
Alex
2023-01-03 00:45:01 +02:00
parent 6eb4bdd6f5
commit 5de802f825
9 changed files with 35 additions and 1 deletions

View File

@ -59,6 +59,7 @@ build: $(FILENAME)
mv $(FILENAME) ../../../out/system/$(FILENAME)
$(FILENAME): $(OBJ)
$(info Linking $@)
$(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@
%.o: %.c $(HEADERS)

View File

@ -53,6 +53,7 @@ build: $(FILENAME)
mv $(FILENAME) ../../../out/system/$(FILENAME)
$(FILENAME): $(OBJ)
$(info Linking $@)
$(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -lssp -linit -lsys -lgraph -o $@
%.o: %.c $(HEADERS)