Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'tags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in')
-rwxr-xr-xtags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in42
1 files changed, 0 insertions, 42 deletions
diff --git a/tags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in b/tags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in
deleted file mode 100755
index 96a875d..0000000
--- a/tags/Version Original/ARToolkit/lib/SRC/VideoGStreamer/Makefile.in
+++ /dev/null
@@ -1,42 +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@
-#
-# products
-#
-LIB= ${LIB_DIR}/libARvideo.a
-INCLUDE= ${INC_DIR}/AR/video.h
-#
-# compilation control
-#
-LIBOBJS= ${LIB}(video.o)
-
-all: ${LIBOBJS}
-
-${LIBOBJS}: ${INCLUDE}
-
-.c.a:
- ${CC} -c ${CFLAG} $<
- ${AR} ${ARFLAGS} $@ $*.o
- rm -f $*.o
-
-clean:
- rm -f *.o
- rm -f ${LIB}
-
-allclean:
- rm -f *.o
- rm -f ${LIB}
- rm -f Makefile