annotate Makefile @ 80:98e077d9d361

List the keyboard controls in --help.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 07 Mar 2020 14:37:59 +0200
parents cc1c35357e39
children 50a69d327b4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
77
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
1 ###
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
2 ### Generic UNIX targets
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
3 ###
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
4
74
99d2c681789f Use OpenGL extension probing on *NIX as well.
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
5 #CXXFLAGS ?= -DGL_GLEXT_PROTOTYPES
77
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
6 #LDFLAGS ?=
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
7
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
8 BINPATH ?= ./
cc1c35357e39 Build system cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 74
diff changeset
9 BINEXT ?=
40
6905d02bca2d Build system improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 35
diff changeset
10 OBJPATH ?= ./obj/unix/
0
3d74a9dd96e4 Initial import of Thomas Trummer's original code.
Thomas Trummer
parents:
diff changeset
11
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
12 SDL_CFLAGS ?= $(shell pkg-config --cflags sdl2)
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
13 SDL_LDFLAGS ?= $(shell pkg-config --libs sdl2)
29
5c7f63fe5c19 Clean up Makefile a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
14
5c7f63fe5c19 Clean up Makefile a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
15 GL_CFLAGS ?= $(shell pkg-config --cflags gl glu)
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
16 GL_LDFLAGS ?= $(shell pkg-config --libs gl glu)
19
a329f0216491 Implement PLY file format parsing and extremely simplistic scene setup file format.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
17
35
d0cd281934a3 Add TOOL_LDFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
18 TOOL_LDFLAGS ?=
d0cd281934a3 Add TOOL_LDFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
19
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
20 include Makefile.gen