- Timestamp:
- Aug 18, 2017, 3:36:27 PM (7 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 485424b
- Parents:
- 201e2f8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
makefile
r201e2f8 r8e232ce 10 10 endif 11 11 12 # If I were generating.o files as well, I should use $? instead of $^ 13 # as this well prevent regenerating .o files for unchanged .cpp files 14 12 15 newgame: new-game.cpp logger.cpp 13 $(CC) $ ?$(DEP) $(CFLAGS) -o $@16 $(CC) $^ $(DEP) $(CFLAGS) -o $@ 14 17 15 18 pong: pong.cpp logger.cpp 16 $(CC) $ ?$(DEP) $(CFLAGS) -o $@19 $(CC) $^ $(DEP) $(CFLAGS) -o $@ 17 20 18 21 mygame: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp 19 $(CC) $ ?$(DEP) $(CFLAGS) -o $@22 $(CC) $^ $(DEP) $(CFLAGS) -o $@ 20 23 21 24 demo: game06.cpp common/shader.cpp common/texture.cpp common/controls.cpp 22 $(CC) $ ?$(DEP) $(CFLAGS) -o $@25 $(CC) $^ $(DEP) $(CFLAGS) -o $@ 23 26 24 27 clean:
Note:
See TracChangeset
for help on using the changeset viewer.