File: Makefile

package info (click to toggle)
libnoise 1.0.0%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,552 kB
  • sloc: cpp: 6,111; makefile: 114
file content (14 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: all here clean
all: here model module

here:
	cp ../src/*.h .
model:
	(mkdir $@ && cp ../src/model/*.h $@)
module:
	(mkdir $@ && cp ../src/$@/*.h $@)

clean:
	-rm *.h
	-rm -rf model
	-rm -rf module