Browse Source

Makefile: The library is called libtsfuncs not libts.

Georgi Chorbadzhiyski 12 years ago
parent
commit
547f332c1c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Makefile

+ 3
- 3
Makefile View File

@@ -18,9 +18,9 @@ OBJS = log.o tsfuncs.o crc.o misc.o time.o \
18 18
 	pes.o pes_data.o \
19 19
 	pes_es.o \
20 20
 	privsec.o
21
-PROG = libts.a
21
+PROG = libtsfuncs.a
22 22
 
23
-tstest_OBJS = tstest.o libts.a
23
+tstest_OBJS = tstest.o libtsfuncs.a
24 24
 all: $(PROG) tstest
25 25
 
26 26
 $(PROG): $(OBJS) tsdata.h tsfuncs.h
@@ -32,7 +32,7 @@ tstest: $(tstest_OBJS)
32 32
 	$(Q)$(CC) $(CFLAGS) $(tstest_OBJS) -o tstest
33 33
 
34 34
 %.o: %.c tsdata.h tsfuncs.h
35
-	$(Q)echo "  CC	libts	$<"
35
+	$(Q)echo "  CC	libtsfuncs	$<"
36 36
 	$(Q)$(CC) $(CFLAGS) -c $<
37 37
 
38 38
 clean:

Loading…
Cancel
Save