OSDN Git Service

stop using trunk or dist directory in rec10 project.
[rec10/rec10-git.git] / dist / trunk / tstools / tunerec / Makefile
diff --git a/dist/trunk/tstools/tunerec/Makefile b/dist/trunk/tstools/tunerec/Makefile
deleted file mode 100755 (executable)
index 4d5310d..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-PREFIX          = /usr/local
-TARGETS = tunerec
-#OBJ_TARGETS     = 
-#HEDDERDEPEND    = eit.h sdt.h aribstr.h ts.h util.h
-
-LANG            = C
-CC              = gcc
-
-#CFLAGS         = -std=c99 -O2 -Wall -g
-CFLAGS          = -std=c99 -O2 -Wall -ggdb
-
-LIBS            =
-
-.c.o:                   ${CC} ${CFLAGS} -c $<
-
-all:                    ${TARGETS}
-
-
-tunerec:               tunerec.c
-                       ${CC} ${CFLAGS} -o ${TARGETS} tunerec.c
-
-clean:
-                       rm -f core ${TARGETS} *.o
-
-install:                ${TARGETS}
-                       install -m755 ${TARGETS} ${PREFIX}/bin
-
-uninstall:              ${TARGETS}
-                       rm ${PREFIX}/bin/${TARGETS}
-
-
-
-#tune: tune.c
-#      gcc -O2 -Wall -I../dvb-pt1/linux/include -o tunerec tune.c
-
-