File: Makefile

package info (click to toggle)
castle-model-viewer 5.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 58,588 kB
  • sloc: pascal: 654,327; sh: 314; xml: 282; makefile: 133
file content (14 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Process all *.png images in this directory to Pascal,
# preserving alpha channel.

.PHONY: all clean

ALL_UNITS=../../code/v3dsceneimages.pas

all: $(ALL_UNITS)

clean:
	rm -f $(ALL_UNITS)

$(ALL_UNITS): *.png
	image-to-pascal --output ../../code V3DSceneImages *.png