Changeset 5272b6b in opengl-game for makefile


Ignore:
Timestamp:
Jul 19, 2017, 3:38:53 AM (7 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
516668e
Parents:
11a48af
Message:

Start building a new game from Anton Gerdelan's tutorials

File:
1 edited

Legend:

Unmodified
Added
Removed
  • makefile

    r11a48af r5272b6b  
    1010endif
    1111
     12newgame: new-game.cpp
     13        $(CC) $? $(DEP) $(CFLAGS) -o $@
     14
    1215game: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
    1316        $(CC) $? $(DEP) $(CFLAGS) -o $@
     
    1720
    1821clean:
     22        rm -f newgame
    1923        rm -f game
    2024        rm -f demo
Note: See TracChangeset for help on using the changeset viewer.