File: Makefile

package info (click to toggle)
xsok 1.02-23
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,864 kB
  • sloc: ansic: 3,990; makefile: 72; sh: 16
file content (19 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile for xsok-1.00
# Hacked to remove gzip support

TARGETS = Sokoban.def Xsok.def Cyberbox.def

all: $(TARGETS)

Sokoban.def: Sokoban
	../src/combine -s Sokoban

Cyberbox.def: Cyberbox
	../src/combine -s Cyberbox

Xsok.def: Xsok
	../src/combine -s Xsok

# clean target:
clean:
	rm -f *~ */*~ $(TARGETS)