annotate Makefile @ 34:f5c5af85ccfd

Update Makefiles.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 04 Oct 2012 06:36:52 +0300
parents 5caa361f3972
children d17d31b736c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # Generic UNIX targets
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 SDL_CFLAGS=`sdl-config --cflags`
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 SDL_LDFLAGS=`sdl-config --static-libs`
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 RANLIB=ranlib
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 DMLIB = ./dmlib/
6
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
10 BINPATH ?= ./
34
f5c5af85ccfd Update Makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
11 OBJPATH ?= ./obj/unix/
6
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
12 EXEEXT ?= .bin
0
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 BINARIES=krapula
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15
c12a8dda22bb Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 include $(DMLIB)Makefile.gen