From: Frank Brehm Date: Thu, 16 Feb 2012 08:45:01 +0000 (+0100) Subject: Automatic commit for backup X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=077dffd7f8c8c104b9258bc27ff159ad1ee673dd;p=docs%2Fdoris.git Automatic commit for backup --- diff --git a/.backup.timestamp.txt b/.backup.timestamp.txt index 840fbb5..aae9158 100644 --- a/.backup.timestamp.txt +++ b/.backup.timestamp.txt @@ -1 +1 @@ -Sun Jan 29 15:45:02 CET 2012 +Thu Feb 16 09:45:01 CET 2012 diff --git a/gegl-0.0/plug-ins/Makefile b/gegl-0.0/plug-ins/Makefile new file mode 100644 index 0000000..fb39dab --- /dev/null +++ b/gegl-0.0/plug-ins/Makefile @@ -0,0 +1,16 @@ +# This is a generic makefile for GEGL operations. Just add .c files, +# rename mentions of the filename and opname to the new name, and it should +# compile. Operations in this dir should be loaded by GEGL by default +# If the operation being written depends on extra libraries, you'd better +# add a dedicated target with the extra bits linked in. + + +CFLAGS += `pkg-config gegl --cflags` -I. -fPIC +SHREXT=.so +CFILES = $(wildcard ./*.c) +SOBJS = $(subst ./,,$(CFILES:.c=$(SHREXT))) +all: $(SOBJS) +%$(SHREXT): %.c $(GEGLHEADERS) + @echo $@; $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDADD) +clean: + rm -f *$(SHREXT) $(OFILES)