summaryrefslogtreecommitdiff
path: root/rsync
authormickeyl <mickeyl>2004-04-28 21:18:02 (UTC)
committer mickeyl <mickeyl>2004-04-28 21:18:02 (UTC)
commitf567351ae81391fbe50c8f37a6dc2ff661b23f44 (patch) (unidiff)
treea588d11e7a5b310c485c7a6a4aa6d773200deda3 /rsync
parentf498387e7c58cd9488c9b4ed964bfb0ebeead5c8 (diff)
downloadopie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.zip
opie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.tar.gz
opie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.tar.bz2
CLEANUP: rsync is now a (static) library and the launcher links against it
Diffstat (limited to 'rsync') (more/less context) (ignore whitespace changes)
-rw-r--r--rsync/config.in3
-rw-r--r--rsync/rsync.pro60
2 files changed, 63 insertions, 0 deletions
diff --git a/rsync/config.in b/rsync/config.in
new file mode 100644
index 0000000..d9502e4
--- a/dev/null
+++ b/rsync/config.in
@@ -0,0 +1,3 @@
1 config LIBQRSYNC
2 boolean "qt rsync wrapper library"
3 default "y"
diff --git a/rsync/rsync.pro b/rsync/rsync.pro
new file mode 100644
index 0000000..a02d122
--- a/dev/null
+++ b/rsync/rsync.pro
@@ -0,0 +1,60 @@
1 TEMPLATE= lib
2
3 CONFIG += qt staticlib warn_on
4
5 DESTDIR = $$(OPIEDIR)/lib
6
7 HEADERS += \
8 buf.h \
9 checksum.h \
10 command.h \
11 emit.h \
12 job.h \
13 netint.h \
14 protocol.h \
15 prototab.h \
16 rsync.h \
17 search.h \
18 stream.h \
19 sumset.h \
20 trace.h \
21 types.h \
22 util.h \
23 whole.h \
24 config_rsync.h \
25 qrsync.h
26
27 SOURCES += \
28 base64.c \
29 buf.c \
30 checksum.c \
31 command.c \
32 delta.c \
33 emit.c \
34 hex.c \
35 job.c \
36 mdfour.c \
37 mksum.c \
38 msg.c \
39 netint.c \
40 patch.c \
41 prototab.c \
42 readsums.c \
43 scoop.c \
44 search.c \
45 stats.c \
46 stream.c \
47 sumset.c \
48 trace.c \
49 tube.c \
50 util.c \
51 version.c \
52 whole.c \
53 qrsync.cpp
54
55INCLUDEPATH += $(OPIEDIR)/include
56
57LIBS += -lopiecore2
58TARGET = qrsync
59
60include ( $(OPIEDIR)/include.pro )