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:
authorBernie Innocenti <bernie@codewiz.org>2010-05-03 21:53:47 (GMT)
committer Bernie Innocenti <bernie@codewiz.org>2010-05-03 21:53:47 (GMT)
commit1030dc837b10a03a02a85d5504cbeec168ce49e2 (patch)
tree698eefa87ac437deaf36a4141b326f8ce7986692 /src/filter/Makefile.in
Import XaoS r489 (trunk after version 3.5)
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