~ubuntu-branches/ubuntu/maverick/freecell-solver/maverick

« back to all changes in this revision

Viewing changes to board_gen/Makefile.unix

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2002-04-06 11:35:18 UTC
  • Revision ID: james.westby@ubuntu.com-20020406113518-n398kvu45dixasoh
Tags: upstream-2.4.1
ImportĀ upstreamĀ versionĀ 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
CC = gcc
 
3
OFLAGS = -Wall -O3
 
4
 
 
5
TARGETS = make-gnome-freecell-board make-aisleriot-freecell-board \
 
6
          make-microsoft-freecell-board pi-make-microsoft-freecell-board
 
7
 
 
8
UNBUILT_TARGETS = make-pysol-freecell-board
 
9
 
 
10
all: $(TARGETS)
 
11
 
 
12
all2: $(TARGETS) $(UNBUILT_TARGETS)
 
13
 
 
14
make-gnome-freecell-board: make_gnome_freecell_board.c
 
15
        $(CC) $(OFLAGS) -o $@ $<
 
16
 
 
17
make-aisleriot-freecell-board: make_aisleriot_freecell_board.c
 
18
        $(CC) $(OFLAGS) -o $@ $<
 
19
 
 
20
make-microsoft-freecell-board: make_microsoft_freecell_board.c
 
21
        $(CC) $(OFLAGS) -o $@ $<
 
22
 
 
23
pi-make-microsoft-freecell-board: pi_make_microsoft_freecell_board.c
 
24
        $(CC) $(OFLAGS) -o $@ $<
 
25
 
 
26
make-pysol-freecell-board: make_pysol_freecell_board.c
 
27
        $(CC) $(OFLAGS) -o $@ $<        
 
28
 
 
29
clean:
 
30
        rm -f $(TARGETS) $(UNBUILT_TARGETS)