Forked from
STJr / SRB2
1125 commits behind, 9 commits ahead of the upstream repository.
-
Alam Ed Arias authoredAlam Ed Arias authored
Makefile 452 B
# Makfile for SRB2 Level Converter
# by Alam Arias et al.
SRC=levelconverter.c
OBJ=$(SRC:.c=.o)# replaces the .c from SRC with .o
EXE=LevelConverter
.PHONY : all # .PHONY ignores files named all
all: $(EXE) # all is dependent on $(BIN) to be complete
$(EXE): $(OBJ) # $(EXE) is dependent on all of the files in $(OBJ) to exist
$(CC) $(OBJ) $(LDFLAGS) -o $@
.PHONY : clean # .PHONY ignores files named clean
clean:
-$(RM) $(OBJ) $(EXE)