... | ... |
@@ -154,6 +154,8 @@ tar: |
154 | 154 |
--exclude=$(notdir $(CURDIR))/test* \ |
155 | 155 |
--exclude=$(notdir $(CURDIR))/tmp* \ |
156 | 156 |
--exclude=$(notdir $(CURDIR))/debian/ser* \ |
157 |
+ --exclude=$(notdir $(CURDIR))/tls* \ |
|
158 |
+ --exclude=$(notdir $(CURDIR))/ser_tls* \ |
|
157 | 159 |
--exclude=CVS* \ |
158 | 160 |
--exclude=*.[do] \ |
159 | 161 |
--exclude=*.so \ |
... | ... |
@@ -14,6 +14,9 @@ |
14 | 14 |
sources=$(filter-out $(auto_gen), $(wildcard *.c) $(wildcard mem/*.c) \ |
15 | 15 |
$(wildcard parser/*.c) $(wildcard parser/digest/*.c) \ |
16 | 16 |
$(wildcard parser/contact/*.c) $(wildcard db/*.c) ) $(auto_gen) |
17 |
+ifneq ($(TLS),) |
|
18 |
+ sources+= $(wildcard tls/*.c) |
|
19 |
+endif |
|
17 | 20 |
objs=$(sources:.c=.o) |
18 | 21 |
extra_objs= |
19 | 22 |
depends=$(sources:.c=.d) |