feature/imgui-sdl
points-test
Last change
on this file since 485424b was 485424b, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 7 years ago |
Add support for loading and applying texture and add a square to the scene with a demo texture
|
-
Property mode
set to
100644
|
File size:
874 bytes
|
Line | |
---|
1 | OS = $(shell uname)
|
---|
2 | CC = g++
|
---|
3 | CFLAGS = -std=c++0x -Wall -pedantic #-Wextra
|
---|
4 |
|
---|
5 | ifeq ($(OS),Darwin)
|
---|
6 | DEP = -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo -lglfw3 -lglew
|
---|
7 | endif
|
---|
8 | ifeq ($(OS),Linux)
|
---|
9 | DEP = -lglfw3 -lGLEW -lGL -ldl -lX11 -lXrandr -lXxf86vm -lXinerama -lXcursor -pthread
|
---|
10 | endif
|
---|
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 |
|
---|
15 | newgame: new-game.cpp logger.cpp stb_image.cpp
|
---|
16 | $(CC) $^ $(DEP) $(CFLAGS) -o $@
|
---|
17 |
|
---|
18 | pong: pong.cpp logger.cpp
|
---|
19 | $(CC) $^ $(DEP) $(CFLAGS) -o $@
|
---|
20 |
|
---|
21 | mygame: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
|
---|
22 | $(CC) $^ $(DEP) $(CFLAGS) -o $@
|
---|
23 |
|
---|
24 | demo: game06.cpp common/shader.cpp common/texture.cpp common/controls.cpp
|
---|
25 | $(CC) $^ $(DEP) $(CFLAGS) -o $@
|
---|
26 |
|
---|
27 | clean:
|
---|
28 | rm -f newgame
|
---|
29 | rm -f pong
|
---|
30 | rm -f mygame
|
---|
31 | rm -f demo
|
---|
Note:
See
TracBrowser
for help on using the repository browser.