Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'tags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in')
-rwxr-xr-xtags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in61
1 files changed, 0 insertions, 61 deletions
diff --git a/tags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in b/tags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in
deleted file mode 100755
index dc7493d..0000000
--- a/tags/Version Original/ARToolkit/lib/SRC/Gl/Makefile.in
+++ /dev/null
@@ -1,61 +0,0 @@
-#
-# For instalation. Change this to your settings.
-#
-INC_DIR = ../../../include
-LIB_DIR = ../..
-#
-# compiler
-#
-CC= cc
-CFLAG= @CFLAG@ -I$(INC_DIR)
-#
-# For making the library
-#
-AR= ar
-ARFLAGS= @ARFLAG@
-RANLIB= @RANLIB@
-#
-# products
-#
-LIB= ${LIB_DIR}/libARgsub.a
-LIB2= ${LIB_DIR}/libARgsubUtil.a
-LIB3= ${LIB_DIR}/libARgsub_lite.a
-
-INCLUDE= ${INC_DIR}/AR/gsub.h \
- ${INC_DIR}/AR/config.h \
- ${INC_DIR}/AR/ar.h \
- ${INC_DIR}/AR/matrix.h \
- ${INC_DIR}/AR/param.h
-INCLUDE2= ${INC_DIR}/AR/gsubUtil.h
-INCLUDE3= ${INC_DIR}/AR/gsub_lite.h \
- ${INC_DIR}/AR/config.h \
- ${INC_DIR}/AR/ar.h \
- ${INC_DIR}/AR/param.h
-
-#
-# compilation control
-#
-LIBOBJS= ${LIB}(gsub.o)
-LIB2OBJS= ${LIB2}(gsubUtil.o)
-LIB3OBJS= ${LIB3}(gsub_lite.o)
-
-all: ${LIBOBJS} ${LIB2OBJS} ${LIB3OBJS}
-
-${LIBOBJS}: ${INCLUDE}
-${LIB2OBJS}: ${INCLUDE} ${INCLUDE2}
-${LIB3OBJS}: ${INCLUDE3}
-
-.c.a:
- ${CC} -c ${CFLAG} $<
- ${AR} ${ARFLAGS} $@ $*.o
- ${RANLIB}
- rm -f $*.o
-
-clean:
- rm -f *.o
- rm -f ${LIB} ${LIB2} ${LIB3}
-
-allclean:
- rm -f *.o
- rm -f ${LIB} ${LIB2} ${LIB3}
- rm -f Makefile