Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/filter/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/filter/Makefile.in')
-rw-r--r--src/filter/Makefile.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/filter/Makefile.in b/src/filter/Makefile.in
new file mode 100644
index 0000000..6786158
--- /dev/null
+++ b/src/filter/Makefile.in
@@ -0,0 +1,45 @@
+CC = @CC@
+CFLAGS = @CFLAGS@
+LIBS = @LIBS@ -lm
+LFLAGS = @LDFLAGS@
+AR = @AR@
+RANLIB = @RANLIB@
+
+SRCS = image.c \
+ palette.c \
+ random.c \
+ grlib.c \
+ font.c \
+ filter.c
+
+OBJS = $(SRCS:.c=.o)
+
+TLIB = ../lib/libfilter.a
+
+grlib.o: grlibd.c
+
+all: $(TLIB)
+
+$(TLIB):$(OBJS)
+ rm -f $@
+ $(AR) rc $@ $(OBJS)
+ $(RANLIB) $@
+
+clean:
+ rm -f $(TLIB)
+ rm -f *.[oas]
+ rm -f *~
+ rm -f core
+
+distclean:clean
+ rm Makefile
+
+#dep:
+# rm -f .depend
+# make .depend
+#
+#.depend:
+# echo '# Program dependencies' >.depend
+# gcc -I svgalib $(DEFINES) -MM $(patsubst %.o,%.c,$(OBJS)) >>.depend
+#
+#include .depend