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 56 57 58 59 60 61 62 63 64
|
#
# Makefile --
#
# Makefile for copying shaders
#
# Copyright (c) 2006 Dan Gudmundsson
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# $Id: Makefile,v 1.5 2006/01/27 15:17:56 dgud Exp $
#
DIR = ../../../plugins/autouv
FILES = standard.vs \
wpc_wood.auv \
wood.fs \
wpc_filter.auv \
image_filter.fs \
wpc_edgefilter.auv \
edge_filter.fs \
wpc_brick.auv \
brick.fs \
wpc_hexagon.auv \
hexagon.fs \
wpc_tile.auv \
tile.fs \
wpc_stripes.auv \
stripes.fs \
wpc_voronoi.auv \
voronoi.fs \
wpc_marble.auv \
marble.fs \
wpc_noise_ext.auv \
noise_ext.fs \
wpc_lava.auv \
lava.fs \
wpc_caustics.auv \
caustics.fs \
wpc_camouflage.auv \
camouflage.fs \
wpc_image_mixer.auv \
image_mixer.fs \
wpc_triplanar.auv \
triplanar.vs \
triplanar.fs \
wpc_triplanar3.auv \
triplanar3.fs \
README-shaders.txt
TARGETFILES = $(FILES:%=$(DIR)/%)
all: $(TARGETFILES)
$(DIR)/%: ./%
install -d $(DIR)
install $< $@
clean:
rm -f $(TARGETFILES)
rm -f core
|