OSDN Git Service

add dist
[rec10/rec10-git.git] / dist / trunk / tstools / tunerec / Makefile
diff --git a/dist/trunk/tstools/tunerec/Makefile b/dist/trunk/tstools/tunerec/Makefile
new file mode 100755 (executable)
index 0000000..4d5310d
--- /dev/null
@@ -0,0 +1,36 @@
+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
+
+