]> Frank Brehm's Git Trees - docs/doris.git/commitdiff
Automatic commit for backup
authorFrank Brehm <frank@brehm-online.com>
Thu, 16 Feb 2012 08:45:01 +0000 (09:45 +0100)
committerFrank Brehm <frank@brehm-online.com>
Thu, 16 Feb 2012 08:45:01 +0000 (09:45 +0100)
.backup.timestamp.txt
gegl-0.0/plug-ins/Makefile [new file with mode: 0644]

index 840fbb540ebcccd12bf1bfe99cc2d137e12ed46e..aae9158ca79a7e483a391a1459977277d9b7e460 100644 (file)
@@ -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 (file)
index 0000000..fb39dab
--- /dev/null
@@ -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)