diff options
author | Juha Vehviläinen <jusu@users.sourceforge.net> | 2002-07-09 12:16:46 +0000 |
---|---|---|
committer | Juha Vehviläinen <jusu@users.sourceforge.net> | 2002-07-09 12:16:46 +0000 |
commit | 85d5e43cd4856dd3d14fefd450a0606666b6dc80 (patch) | |
tree | e8e6e2a09b0a1a2cc2177eeb258bbe70e9406a97 /Plugins/makefile | |
parent | 126a4a6c255e2ab9836899717e9c21ee319d4c13 (diff) |
added PixelPack002
svn path=/trunk/Framestein/; revision=29
Diffstat (limited to 'Plugins/makefile')
-rw-r--r-- | Plugins/makefile | 51 |
1 files changed, 50 insertions, 1 deletions
diff --git a/Plugins/makefile b/Plugins/makefile index e899fe2..198a611 100644 --- a/Plugins/makefile +++ b/Plugins/makefile @@ -1,4 +1,9 @@ -all: noize colortv subtract xbend bend gol shuffle green tile rgbcopy copyvert black rgb hist setbits xshred sonogram vf2fs fs2vf swap 2colors plot makesliders +all: noize colortv subtract xbend bend gol shuffle green \ + tile rgbcopy copyvert black rgb hist setbits xshred \ + sonogram vf2fs fs2vf swap 2colors plot makesliders \ + convolution compare darken deinterlace difference interlace lighten \ + multiply overlay screen shadowcaster softlight + dir *.dll # FLAGS: @@ -80,3 +85,47 @@ plot: makesliders: cl makesliders.c $(FLAGS) /link $(EFFECT) copy makesliders.dll ms.dll + +# +# PixelPack by Olaf Matthes +# + +convolution: + cl convolution.c $(FLAGS) /link $(EFFECT) + +compare: + cl compare.c $(FLAGS) /link $(COPY) + +darken: + cl darken.c $(FLAGS) /link $(COPY) + +deinterlace: + cl deinterlace.c $(FLAGS) /link $(EFFECT) + +difference: + cl difference.c $(FLAGS) /link $(COPY) + +interlace: + cl interlace.c $(FLAGS) /link $(COPY) + +lighten: + cl lighten.c $(FLAGS) /link $(COPY) + +multiply: + cl multiply.c $(FLAGS) /link $(COPY) + +overlay: + cl overlay.c $(FLAGS) /link $(COPY) + +screen: + cl screen.c $(FLAGS) /link $(COPY) + +shadowcaster: + cl shadowcaster.c $(FLAGS) /link $(BOTH) + +softlight: + cl softlight.c $(FLAGS) /link $(COPY) + +# +# </PixelPack> +# |