blob: 41962bb0ca45563519a7e9e426ba898d1e3f4da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- makefile -*-
#
# This file describes which puzzle binaries are made up from which
# object and resource files. It is processed into the various
# Makefiles by means of a Perl script. Makefile changes should
# really be made by editing this file and/or the Perl script, not
# by editing the actual Makefiles.
!name puzzles
!makefile gtk Makefile
!makefile vc Makefile.vc
!makefile cygwin Makefile.cyg
WINDOWS = windows user32.lib gdi32.lib
COMMON = midend malloc
NET = net random tree234
net : [X] gtk COMMON NET
cube : [X] gtk COMMON cube
net : [G] WINDOWS COMMON NET
cube : [G] WINDOWS COMMON cube
|