Browse Source

Rename source files to drop tsfuncs_ prefix.

Georgi Chorbadzhiyski 12 years ago
parent
commit
69e8da8e70
23 changed files with 13 additions and 13 deletions
  1. 13
    13
      Makefile
  2. 0
    0
      cat.c
  3. 0
    0
      crc.c
  4. 0
    0
      descs.c
  5. 0
    0
      eit.c
  6. 0
    0
      eit_desc.c
  7. 0
    0
      misc.c
  8. 0
    0
      nit.c
  9. 0
    0
      nit_desc.c
  10. 0
    0
      pat.c
  11. 0
    0
      pat_desc.c
  12. 0
    0
      pes.c
  13. 0
    0
      pes_data.c
  14. 0
    0
      pes_es.c
  15. 0
    0
      pmt.c
  16. 0
    0
      privsec.c
  17. 0
    0
      sdt.c
  18. 0
    0
      sdt_desc.c
  19. 0
    0
      secdata.c
  20. 0
    0
      sections.c
  21. 0
    0
      tdt.c
  22. 0
    0
      tdt_desc.c
  23. 0
    0
      time.c

+ 13
- 13
Makefile View File

@@ -5,19 +5,19 @@ CFLAGS = -ggdb -D_GNU_SOURCE -Wall -Wextra -Wshadow -Wformat-security -O2
5 5
 RM = /bin/rm -f
6 6
 Q=@
7 7
 
8
-OBJS = log.o tsfuncs.o tsfuncs_crc.o tsfuncs_misc.o tsfuncs_time.o \
9
-	tsfuncs_sections.o tsfuncs_section_data.o \
10
-	tsfuncs_descriptors.o \
11
-	tsfuncs_pat.o tsfuncs_pat_desc.o \
12
-	tsfuncs_cat.o \
13
-	tsfuncs_pmt.o \
14
-	tsfuncs_nit.o tsfuncs_nit_desc.o \
15
-	tsfuncs_sdt.o tsfuncs_sdt_desc.o \
16
-	tsfuncs_eit.o tsfuncs_eit_desc.o \
17
-	tsfuncs_tdt.o tsfuncs_tdt_desc.o \
18
-	tsfuncs_pes.o tsfuncs_pes_data.o \
19
-	tsfuncs_pes_es.o \
20
-	tsfuncs_privsec.o
8
+OBJS = log.o tsfuncs.o crc.o misc.o time.o \
9
+	sections.o secdata.o \
10
+	descs.o \
11
+	pat.o pat_desc.o \
12
+	cat.o \
13
+	pmt.o \
14
+	nit.o nit_desc.o \
15
+	sdt.o sdt_desc.o \
16
+	eit.o eit_desc.o \
17
+	tdt.o tdt_desc.o \
18
+	pes.o pes_data.o \
19
+	pes_es.o \
20
+	privsec.o
21 21
 PROG = libts.a
22 22
 
23 23
 tstest_OBJS = tstest.o libts.a

tsfuncs_cat.c → cat.c View File


tsfuncs_crc.c → crc.c View File


tsfuncs_descriptors.c → descs.c View File


tsfuncs_eit.c → eit.c View File


tsfuncs_eit_desc.c → eit_desc.c View File


tsfuncs_misc.c → misc.c View File


tsfuncs_nit.c → nit.c View File


tsfuncs_nit_desc.c → nit_desc.c View File


tsfuncs_pat.c → pat.c View File


tsfuncs_pat_desc.c → pat_desc.c View File


tsfuncs_pes.c → pes.c View File


tsfuncs_pes_data.c → pes_data.c View File


tsfuncs_pes_es.c → pes_es.c View File


tsfuncs_pmt.c → pmt.c View File


tsfuncs_privsec.c → privsec.c View File


tsfuncs_sdt.c → sdt.c View File


tsfuncs_sdt_desc.c → sdt_desc.c View File


tsfuncs_section_data.c → secdata.c View File


tsfuncs_sections.c → sections.c View File


tsfuncs_tdt.c → tdt.c View File


tsfuncs_tdt_desc.c → tdt_desc.c View File


tsfuncs_time.c → time.c View File


Loading…
Cancel
Save