annotate final_isi/Makefile @ 82:1013256040d5

Clean up build process.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 19 Feb 2013 00:39:19 +0200
parents c13a2f8c5b10
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
53676367d46f Hack Final Isi to "work", kind of. Requires a nasty hack in pwplib to actually run (without it, it quits abruptly .. not yet sure why.)
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
1 include ../config.mak
0
acb5694e93d9 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2
51
53676367d46f Hack Final Isi to "work", kind of. Requires a nasty hack in pwplib to actually run (without it, it quits abruptly .. not yet sure why.)
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
3 TARGETS=fisi$(BINEXT)
0
acb5694e93d9 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4
51
53676367d46f Hack Final Isi to "work", kind of. Requires a nasty hack in pwplib to actually run (without it, it quits abruptly .. not yet sure why.)
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
5 all: $(TARGETS)
0
acb5694e93d9 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6
69
c13a2f8c5b10 Rename files and some minor cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
7 OBJS = wrapper.o fiscroll.o 3d.o demo.o effu.o font.o main.o time.o ../pwplib.a
0
acb5694e93d9 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
51
53676367d46f Hack Final Isi to "work", kind of. Requires a nasty hack in pwplib to actually run (without it, it quits abruptly .. not yet sure why.)
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
9 include ../Makefile.inc
0
acb5694e93d9 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10
51
53676367d46f Hack Final Isi to "work", kind of. Requires a nasty hack in pwplib to actually run (without it, it quits abruptly .. not yet sure why.)
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
11 fisi$(BINEXT): $(OBJS)
82
1013256040d5 Clean up build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
12 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)