source: svn/newcon3bcm2_21bu/BSEAV/lib/mpeg2_ts_parse/test/Makefile

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 767 bytes
Line 
1include ../../../api/build/tools.mak
2BSEAV = $(shell cd ../../.. && ${PWD})
3include $(BSEAV)/lib/bwin/build/system.mak
4CFLAGS += $(SYSTEM_FLAGS)
5include $(BSEAV)/lib/bwin/build/magnumbase.mak
6CFLAGS += $(MAGNUM_INCLUDE) $(MAGNUM_GENERIC_CHIP_DEFINES)
7
8APP=ts_parse
9
10SRCS = main.c \
11        ../psip.c \
12        ../psip_common.c \
13        ../psip_dccsct.c \
14        ../psip_dcct.c \
15        ../psip_decode_tree_01.c \
16        ../psip_decode_tree_02.c \
17        ../psip_descriptor.c \
18        ../psip_eit.c \
19        ../psip_ett.c \
20        ../psip_mgt.c \
21        ../psip_mss.c \
22        ../psip_rrt.c \
23        ../psip_stt.c \
24        ../psip_vct.c \
25        ../ts_ca.c \
26        ../ts_packet.c \
27        ../ts_pat.c \
28        ../ts_pmt.c \
29        ../ts_priv.c \
30        ../ts_psi.c
31
32OBJS = $(subst .c,.o,$(SRCS))
33
34CFLAGS += -I.. -I.
35
36$(APP): $(OBJS)
37        $(CC) -o $@ $^ $(LFLAGS)
38
39clean:
40        $(RM) $(APP) $(OBJS)
Note: See TracBrowser for help on using the repository browser.