Changeset 8a6d19d in opengl-game for makefile


Ignore:
Timestamp:
Jun 23, 2017, 8:07:56 PM (7 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
92bc4fe
Parents:
b33f87b
Message:

Implement movement in a basic 3D scene and add some examples from the new OpenGL tutorials site

File:
1 edited

Legend:

Unmodified
Added
Removed
  • makefile

    rb33f87b r8a6d19d  
    1010endif
    1111
    12 game: game.cpp
     12game: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
     13        $(CC) $? $(DEP) $(CFLAGS) -o $@
     14
     15demo: game06.cpp common/shader.cpp common/texture.cpp common/controls.cpp
    1316        $(CC) $? $(DEP) $(CFLAGS) -o $@
    1417
    1518clean:
    1619        rm -f game
     20        rm -f demo
Note: See TracChangeset for help on using the changeset viewer.