OSDN Git Service

classify : fix DB id undefined.
[rec10/rec10-git.git] / tunerec / Makefile
1 PREFIX          = /usr/local
2 TARGETS = tunerec
3 #OBJ_TARGETS     = 
4 #HEDDERDEPEND    = eit.h sdt.h aribstr.h ts.h util.h
5
6 LANG            = C
7 CC              = gcc
8
9 #CFLAGS         = -std=c99 -O2 -Wall -pthread -g
10 CFLAGS          = -std=c99 -O2 -Wall -pthread -ggdb
11
12 LIBS            =
13
14 .c.o:                   ${CC} ${CFLAGS} -c $<
15
16 all:                    ${TARGETS}
17
18
19 tunerec:                tunerec.c
20                         ${CC} ${CFLAGS} -o ${TARGETS} tunerec.c
21
22 clean:
23                         rm -f core ${TARGETS} *.o
24
25 install:                ${TARGETS}
26                         install -m755 ${TARGETS} ${PREFIX}/bin
27
28 uninstall:              ${TARGETS}
29                         rm ${PREFIX}/bin/${TARGETS}
30
31
32
33 #tune: tune.c
34 #       gcc -O2 -Wall -I../dvb-pt1/linux/include -o tunerec tune.c
35
36