aboutsummaryrefslogtreecommitdiff
path: root/Makefile.wixfakelibs
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2017-02-20 07:17:56 +0000
committerSimon Tatham <anakin@pobox.com>2017-02-20 07:17:56 +0000
commit6824aa549cbfc535debee2effe99b5a30849fdcd (patch)
treeafc84cf8fc1cd86420bd68af41871a3da39c0def /Makefile.wixfakelibs
parentfbf19f95a0e843384af423449a18a96da1eaec95 (diff)
downloadwix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.tar.gz
wix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.tar.bz2
wix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.zip
Start of a fake msi.dll.
This seems to be the next function WiX expects from its native-code DLLs. So far it's just a stub.
Diffstat (limited to 'Makefile.wixfakelibs')
-rw-r--r--Makefile.wixfakelibs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.wixfakelibs b/Makefile.wixfakelibs
index af8b0f5..7a3b8ef 100644
--- a/Makefile.wixfakelibs
+++ b/Makefile.wixfakelibs
@@ -2,7 +2,7 @@
2 2
3.SUFFIXES: .c .lo .la 3.SUFFIXES: .c .lo .la
4 4
5all: libwinterop.so.la 5all: libwinterop.so.la libmsi.so.la
6 6
7%.la: 7%.la:
8 libtool --mode=link gcc -o $@ $^ -rpath /usr/local/lib 8 libtool --mode=link gcc -o $@ $^ -rpath /usr/local/lib
@@ -12,6 +12,8 @@ all: libwinterop.so.la
12 12
13libwinterop.so.la: fake-winterop.lo 13libwinterop.so.la: fake-winterop.lo
14 14
15libmsi.so.la: fake-msi.lo
16
15clean: 17clean:
16 rm -rf .libs 18 rm -rf .libs
17 rm -f *.o *.lo *.la 19 rm -f *.o *.lo *.la