annotate Makefile @ 2298:b5abfff07ca9

Add new DMGrowBuf helper functions dmGrowBufCopyOffsSize() and dmGrowBufConstCopyOffsSize().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 04 Jul 2019 10:54:16 +0300
parents 85f76ec15090
children 69a5af2eb1ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # Generic UNIX targets
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #
1166
f29fa5b6b748 Add dmMemset().
Matti Hamalainen <ccr@tnsp.org>
parents: 1156
diff changeset
4 DM_CFLAGS += -DDM_HAVE_MEMSET=1
f29fa5b6b748 Add dmMemset().
Matti Hamalainen <ccr@tnsp.org>
parents: 1156
diff changeset
5
877
4a2ed354ab4c Use ?= in the Makefiles to accept preset values.
Matti Hamalainen <ccr@tnsp.org>
parents: 876
diff changeset
6 DMLIB ?= ./
886
6abb6c25d8ed Reorder for clarity.
Matti Hamalainen <ccr@tnsp.org>
parents: 877
diff changeset
7 BINPATH ?= ./
841
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
8 OBJPATH ?= ./obj/unix/
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
9 PREFIX ?= /usr/local
877
4a2ed354ab4c Use ?= in the Makefiles to accept preset values.
Matti Hamalainen <ccr@tnsp.org>
parents: 876
diff changeset
10 INSTALL ?= install
4a2ed354ab4c Use ?= in the Makefiles to accept preset values.
Matti Hamalainen <ccr@tnsp.org>
parents: 876
diff changeset
11 RANLIB ?= ranlib
841
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
12
1557
5e5f75b45f8d Initial port to SDL2. Many things will not work now.
Matti Hamalainen <ccr@tnsp.org>
parents: 1432
diff changeset
13 SDL_CFLAGS ?= $(shell pkg-config --cflags sdl2)
5e5f75b45f8d Initial port to SDL2. Many things will not work now.
Matti Hamalainen <ccr@tnsp.org>
parents: 1432
diff changeset
14 SDL_LDFLAGS ?= $(shell pkg-config --libs sdl2)
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
15
1557
5e5f75b45f8d Initial port to SDL2. Many things will not work now.
Matti Hamalainen <ccr@tnsp.org>
parents: 1432
diff changeset
16 SDL_TTF_CFLAGS ?= $(shell pkg-config --cflags SDL2_ttf)
5e5f75b45f8d Initial port to SDL2. Many things will not work now.
Matti Hamalainen <ccr@tnsp.org>
parents: 1432
diff changeset
17 SDL_TTF_LDFLAGS ?= $(shell pkg-config --libs SDL2_ttf)
840
a9d0d35476ae Add flag variables for SDL_ttf.
Matti Hamalainen <ccr@tnsp.org>
parents: 503
diff changeset
18
1398
2791f790497d Use $(shell ..) instead of backtics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
19 TREMOR_CFLAGS ?= $(shell pkg-config --cflags ogg)
2791f790497d Use $(shell ..) instead of backtics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
20 TREMOR_LDFLAGS ?= /usr/lib/libvorbisidec.a $(shell pkg-config --variable=libdir ogg)/libogg.a
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21
1398
2791f790497d Use $(shell ..) instead of backtics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
22 LIBPNG_CFLAGS ?= $(shell pkg-config --cflags libpng)
1421
c3bda6e63b00 Stray whitespace at line end.
Matti Hamalainen <ccr@tnsp.org>
parents: 1398
diff changeset
23 LIBPNG_LDFLAGS ?= $(shell pkg-config --libs libpng)
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
24
1398
2791f790497d Use $(shell ..) instead of backtics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
25 ZLIB_CFLAGS ?= $(shell pkg-config --cflags zlib)
2791f790497d Use $(shell ..) instead of backtics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
26 ZLIB_LDFLAGS ?= $(shell pkg-config --libs zlib)
424
e88b2993801c Fix build for Win32.
Matti Hamalainen <ccr@tnsp.org>
parents: 421
diff changeset
27
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28
1432
a9516570cc26 Improve build, so that we can build the tools and tests with minimal
Matti Hamalainen <ccr@tnsp.org>
parents: 1421
diff changeset
29 TOOL_LDFLAGS ?=
1272
acae5f8ebc67 Fix build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 1166
diff changeset
30
503
f9be2bc8f8ed It would be nice if the install target would print out what it is actually
Matti Hamalainen <ccr@tnsp.org>
parents: 502
diff changeset
31 include $(DMLIB)Makefile.gen
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
32
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
33
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
34 install: all
2110
85f76ec15090 Support DESTDIR for 'make install'.
Matti Hamalainen <ccr@tnsp.org>
parents: 1557
diff changeset
35 @for fn in $(TOOL_TARGETS); do echo " INSTALL $$fn $(DESTDIR)$(PREFIX)/bin/"; $(INSTALL) -m 755 "$$fn" $(DESTDIR)$(PREFIX)/bin/; done