diff options
| author | pp <pp@455248ca-bdda-0310-9134-f4ebb693071a> | 2004-05-19 04:59:31 +0000 |
|---|---|---|
| committer | pp <pp@455248ca-bdda-0310-9134-f4ebb693071a> | 2004-05-19 04:59:31 +0000 |
| commit | d0a9b9a03fc7ae74ef8a64593ac6b592526ec4d5 (patch) | |
| tree | e03d2a7fac8c7619f1286545f717ef7ee3866cd6 /filters/Makefile.in | |
- initial import
git-svn-id: https://siedziba.pl:790/svn/repos/php-imlib/trunk@7 455248ca-bdda-0310-9134-f4ebb693071a
Diffstat (limited to 'filters/Makefile.in')
| -rw-r--r-- | filters/Makefile.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/filters/Makefile.in b/filters/Makefile.in new file mode 100644 index 0000000..4d5f6b3 --- /dev/null +++ b/filters/Makefile.in @@ -0,0 +1,18 @@ + +filters := php_colormod php_bumpmap php_testfilter php_hsbcolor php_colormatrix +filters_la := $(addsuffix .la,$(filters)) +filters_lo := $(addsuffix .lo,$(filters)) + +all : $(filters_la) +$(filters_lo) : %.lo : %.c + $(LIBTOOL) --mode=compile $(COMPILE) -c $*.c +$(filters_la) : %.la : %.lo + $(LIBTOOL) --mode=link $(COMPILE) -module -avoid-version -o $*.la $*.lo -rpath $(filters_libdir) -lm +install : all + $(mkinstalldirs) $(filters_libdir) + $(LIBTOOL) cp $(filters_la) $(filters_libdir) +clean: + rm -f *.lo *.slo *.la *.o + rm -rf .libs +distclean: clean + rm -f Makefile |
