Changeset a9e808e in network-game for graphics_library/makefile


Ignore:
Timestamp:
May 17, 2014, 6:55:01 PM (11 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
883bb5d
Parents:
95d7add (diff), af116c0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:weretaco/network-game

File:
1 edited

Legend:

Unmodified
Added
Removed
  • graphics_library/makefile

    r95d7add ra9e808e  
    11CC = g++
    2 LIB_FLAGS = -lGL -lglut -lGLEW -lglfw
     2LIB_FLAGS = -lGL -lglut -lGLEW `pkg-config glfw3 --static --cflags --libs`
    33FLAGS = -Wall
    4 DEPENDENCIES =
     4DEPENDENCIES = common/texture.o common/controls.o common/shader.o
    55
    66graphics_engine : main.cpp $(DEPENDENCIES)
     
    1111
    1212clean:
    13         rm graphics_engine
    14         rm *.o
     13        rm -f *.o
     14        rm -f common/*.o
     15        rm -f graphics_engine
Note: See TracChangeset for help on using the changeset viewer.