File: Makefile.in

package info (click to toggle)
liquidwar 5.6.3-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 15,960 kB
  • ctags: 2,583
  • sloc: ansic: 25,365; xml: 4,001; sh: 3,053; makefile: 1,353; asm: 1,344; python: 537; php: 486; sql: 22
file content (55 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

GMAKE = @GMAKE@

ALLEGRO_DAT = dat

MAKE_DIRS = back font map sfx texture maptex water music
FILES = back/back.dat font/font.dat map/map.dat \
	sfx/sfx.dat texture/texture.dat maptex/maptex.dat \
	water/water.dat music/music.dat

all: liquidwar.dat

liquidwar.dat: $(FILES)
	@rm -f $@
	@echo Creating $@
	@$(ALLEGRO_DAT) -a $@ $(FILES) 

clean:
	@rm -f *.dat
	@for d in $(MAKE_DIRS); do $(MAKE) -C $$d clean; done

distclean:
	@rm -f Makefile
	@for d in $(MAKE_DIRS); do $(MAKE) -C $$d distclean; done

config:

check:

dep:

back/back.dat:
	@$(MAKE) -C back

font/font.dat:
	@$(MAKE) -C font 

map/map.dat:
	@$(MAKE) -C map

sfx/sfx.dat:
	@$(MAKE) -C sfx

texture/texture.dat:
	@$(MAKE) -C texture

maptex/maptex.dat:
	@$(MAKE) -C maptex

water/water.dat:
	@$(MAKE) -C water

music/music.dat:
	@$(MAKE) -C music