summaryrefslogtreecommitdiff
path: root/Examples/GIFPlot/Lib/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/GIFPlot/Lib/Makefile.in')
-rw-r--r--Examples/GIFPlot/Lib/Makefile.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/Examples/GIFPlot/Lib/Makefile.in b/Examples/GIFPlot/Lib/Makefile.in
deleted file mode 100644
index 9db828eb2..000000000
--- a/Examples/GIFPlot/Lib/Makefile.in
+++ /dev/null
@@ -1,22 +0,0 @@
-CC = @CC@
-CCSHARED= @CCSHARED@
-INCLUDES= -I../Include
-CFLAGS = -O
-SRCS = frame.c color.c plot2d.c plot3d.c font.c pixmap.c matrix.c gif.c
-OBJS = $(SRCS:.c=.@OBJEXT@)
-AR = @AR@
-RANLIB = @RANLIB@
-TARGET = ../libgifplot.a
-
-.c.@OBJEXT@:
- $(CC) $(CCSHARED) $(INCLUDES) $(CFLAGS) -c -o $*.@OBJEXT@ $<
-
-all: $(OBJS)
- @rm -f ../libgifplot.a
- $(AR) cr $(TARGET) $(OBJS)
- $(RANLIB) $(TARGET)
-
-clean:
- rm -f *.@OBJEXT@ *~ $(TARGET)
-
-check: all