]>
Commit | Line | Data |
---|---|---|
79144b8a RR |
1 | # |
2 | # File: Makefile.in | |
3 | # Author: Julian Smart | |
4 | # Created: 1998 | |
5 | # Updated: | |
6 | # Copyright: (c) 1998 Julian Smart | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile for forty example (UNIX). | |
11 | ||
2224580a | 12 | top_srcdir = @top_srcdir@/.. |
79144b8a | 13 | top_builddir = ../.. |
70f7a477 | 14 | program_dir = demos/forty |
79144b8a RR |
15 | |
16 | PROGRAM=forty | |
17 | ||
8b2a4e0c GD |
18 | OBJECTS =$(PROGRAM).o canvas.o card.o game.o pile.o playerdg.o scoredg.o scorefil.o |
19 | DEPFILES=$(PROGRAM).d canvas.d card.d game.d pile.d playerdg.d scoredg.d scorefil.d | |
79144b8a RR |
20 | |
21 | include ../../src/makeprog.env | |
22 | ||
27fd0246 | 23 | @IF_GNU_MAKE@-include $(DEPFILES) |