changed color of file in run, removed .SUFFIXES

This commit is contained in:
Noah Swerhun 2021-12-24 10:05:49 -06:00
parent e6f43dd76f
commit bbf8c84ba8

View file

@ -51,7 +51,6 @@ gen_makefile() {
# DO NOT MODIFY BY HAND # # DO NOT MODIFY BY HAND #
########################## ##########################
.POSIX: .POSIX:
.SUFFIXES:
$(TARGET): $(OBJ) $(TARGET): $(OBJ)
@$(PROG_COMMAND) link $(TARGET) @$(PROG_COMMAND) link $(TARGET)
@ -97,7 +96,7 @@ clean() {
run() { run() {
build build
info "Running ./${TARGET}" info "Running ./${TARGET}"
"./${TARGET}" "./${TARGET}"
} }