Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/engine/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Makefile.in')
-rw-r--r--src/engine/Makefile.in70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/engine/Makefile.in b/src/engine/Makefile.in
new file mode 100644
index 0000000..5615ae6
--- /dev/null
+++ b/src/engine/Makefile.in
@@ -0,0 +1,70 @@
+CC = @CC@
+CFLAGS = @CFLAGS@
+LIBS = @LIBS@ -lm
+LFLAGS = @LDFLAGS@
+AR = @AR@
+RANLIB = @RANLIB@
+
+SRCS = formulas.c \
+ fractal.c \
+ btrace.c \
+ palettef.c \
+ emboss.c \
+ star.c \
+ anti.c \
+ dither.c \
+ edge.c \
+ edge2.c \
+ rotate.c \
+ zoom.c \
+ blur.c \
+ interlace.c \
+ itersmall.c \
+ stereogram.c \
+ 3d.c \
+ subwindow.c \
+ plane.c \
+ julia.c \
+ i386.c
+
+
+OBJS = $(SRCS:.c=.o)
+
+TLIB = ../lib/libengine.a
+
+
+all: $(TLIB)
+
+$(TLIB):$(OBJS)
+ rm -f $@
+ $(AR) rc $@ $(OBJS)
+ $(RANLIB) $@
+
+formulas.o: docalc.c
+3d.o: 3dd.c
+btrace.o: btraced.c
+edge2.o: edge2d.c
+palette.o: paletted.c
+rotate.o: rotated.c
+stereogram.o: stereod.c
+star.o: stard.c
+zoom.o: zoomd.c
+
+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