Changeset 9e81839 in opengl-game for makefile


Ignore:
Timestamp:
Aug 7, 2017, 2:10:36 AM (7 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
eeece4e
Parents:
49756cb
Message:

Start implementing pong and encapsulating some of the OpenGL code into reusable functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • makefile

    r49756cb r9e81839  
    1313        $(CC) $? $(DEP) $(CFLAGS) -o $@
    1414
     15pong: pong.cpp logger.cpp
     16        $(CC) $? $(DEP) $(CFLAGS) -o $@
     17
    1518mygame: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
    1619        $(CC) $? $(DEP) $(CFLAGS) -o $@
     
    2124clean:
    2225        rm -f newgame
     26        rm -f pong
    2327        rm -f mygame
    2428        rm -f demo
Note: See TracChangeset for help on using the changeset viewer.