annotate Makefile @ 34:c0b85b0615d2

Improve the makefiles.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 26 Nov 2019 07:17:49 +0200
parents 1a0e823283e4
children d0cd281934a3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
87cb16492d91 Improve Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1 BINEXT ?=
0
3d74a9dd96e4 Initial import of Thomas Trummer's original code.
Thomas Trummer
parents:
diff changeset
2
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
3 SDL_CFLAGS ?= $(shell pkg-config --cflags sdl2)
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
4 SDL_LDFLAGS ?= $(shell pkg-config --libs sdl2)
29
5c7f63fe5c19 Clean up Makefile a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
5
5c7f63fe5c19 Clean up Makefile a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
6 GL_CFLAGS ?= $(shell pkg-config --cflags gl glu)
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
7 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
8
34
c0b85b0615d2 Improve the makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 30
diff changeset
9 include Makefile.gen