annotate pwpzax/Makefile @ 27:0eba27fee6da

Const fix.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 24 May 2010 00:14:18 +0300
parents c3622b53a23e
children 678924af9149
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 include ../config.mak
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2
27
0eba27fee6da Const fix.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
3 TARGETS=zaxplay$(BINEXT)
23
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 all: $(TARGETS)
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 include ../Makefile.inc
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
27
0eba27fee6da Const fix.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
9 zaxplay$(BINEXT): zaxplay.c
23
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
c3622b53a23e Clean up the build system.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11