Browse Source

makefile: Compile libraries before tsdecrypt objects.

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

+ 1
- 1
Makefile View File

@@ -32,7 +32,7 @@ TS_LIB = $(TS_DIR)/libtsfuncs.a
32 32
 
33 33
 tsdecrypt_SRC  = data.c udp.c util.c camd.c process.c tables.c notify.c tsdecrypt.c
34 34
 tsdecrypt_LIBS = -lcrypto -ldvbcsa -lpthread
35
-tsdecrypt_OBJS = $(tsdecrypt_SRC:.c=.o) $(FUNCS_LIB) $(TS_LIB)
35
+tsdecrypt_OBJS = $(FUNCS_LIB) $(TS_LIB) $(tsdecrypt_SRC:.c=.o)
36 36
 
37 37
 CLEAN_OBJS = tsdecrypt $(tsdecrypt_SRC:.c=.{o,d})
38 38
 

Loading…
Cancel
Save