updated makefile and readme
Some checks are pending
pre-release / Pre Release (push) Waiting to run

This commit is contained in:
Karma Riuk
2025-02-19 13:48:22 +01:00
parent f7733c1317
commit 1ff9b33bda
2 changed files with 11 additions and 7 deletions

View File

@ -28,8 +28,8 @@ obj/%.o:
@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) -o $@ -c $<
main: $(OBJFILES)
$(CXX) $(CXXFLAGS) $(OBJFILES) $(LOADLIBES) $(LDLIBS) -o main -lsfml-graphics -lsfml-window -lsfml-system
stickfosh: $(OBJFILES)
$(CXX) $(CXXFLAGS) $(OBJFILES) $(LOADLIBES) $(LDLIBS) -o stickfosh -lsfml-graphics -lsfml-window -lsfml-system
clean:
rm -rf obj/* $(DEPFILES) test_bin/