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 (13 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This requires file_to_pascal_string from PasDoc
# ( https://github.com/pasdoc/pasdoc/wiki ) project. Get it and compile from
# https://raw.githubusercontent.com/pasdoc/pasdoc/master/source/tools/file_to_pascal_string.dpr .

ALL_TARGETS := welcome_scene.inc clear_scene.inc

default: $(ALL_TARGETS)

clean:
	rm -f $(ALL_TARGETS)

%.inc: %.wrl
	file_to_pascal_string $< $@