[droid] generate Makefile for exports
authortheuni <theuni-nospam-@xbmc.org>
Tue, 29 May 2012 19:45:24 +0000 (15:45 -0400)
committerCory Fields <theuni-nospam-@xbmc.org>
Wed, 8 Aug 2012 22:59:22 +0000 (18:59 -0400)
.gitignore
configure.in
xbmc/cores/DllLoader/exports/Makefile [deleted file]
xbmc/cores/DllLoader/exports/Makefile.in [new file with mode: 0644]

index ee878bb..d5c3da3 100644 (file)
@@ -522,6 +522,7 @@ lib/cmyth/Makefile
 /xbmc/cores/DllLoader/exports/build_wrapper.sh
 /xbmc/cores/DllLoader/exports/wrapper.def
 /xbmc/cores/DllLoader/Makefile
+/xbmc/cores/DllLoader/exports/Makefile
 
 /xbmc/cores/Makefile
 
index f1994d8..c7df813 100755 (executable)
@@ -2019,6 +2019,7 @@ OUTPUT_FILES="Makefile \
     lib/Makefile \
     lib/libdvd/Makefile \
     xbmc/cores/DllLoader/Makefile \
+    xbmc/cores/DllLoader/exports/Makefile \
     xbmc/cores/dvdplayer/DVDCodecs/Makefile \
     xbmc/cores/dvdplayer/DVDCodecs/Audio/Makefile \
     xbmc/cores/dvdplayer/DVDCodecs/Overlay/Makefile \
diff --git a/xbmc/cores/DllLoader/exports/Makefile b/xbmc/cores/DllLoader/exports/Makefile
deleted file mode 100644 (file)
index d23a680..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-SRCS=emu_dummy.cpp \
-     emu_kernel32.cpp \
-     emu_msvcrt.cpp \
-     wrapper.c
-
-LIB=exports.a
-
-CLEAN_FILES=wrapper.def
-
-include ../../../../Makefile.include
--include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
-
-wrapper.o : wrapper.c
-       $(CC) $(CFLAGS) $(DEFINES) -c $(INCLUDES) $< -o $@
-
-exports_python_linux.o : exports_python_linux.cpp
-       $(CXX) $(CXXFLAGS) $(DEFINES) -c $(INCLUDES) $< -o $@
-
-wrapper.def : wrapper.o
-       nm wrapper.o | grep __wrap | awk '{printf("%s ", $$3);}' | sed "s/___wrap_/__wrap_/g" | sed "s/__wrap_/-Wl,-wrap,/g" > $@
diff --git a/xbmc/cores/DllLoader/exports/Makefile.in b/xbmc/cores/DllLoader/exports/Makefile.in
new file mode 100644 (file)
index 0000000..d23a680
--- /dev/null
@@ -0,0 +1,20 @@
+SRCS=emu_dummy.cpp \
+     emu_kernel32.cpp \
+     emu_msvcrt.cpp \
+     wrapper.c
+
+LIB=exports.a
+
+CLEAN_FILES=wrapper.def
+
+include ../../../../Makefile.include
+-include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
+
+wrapper.o : wrapper.c
+       $(CC) $(CFLAGS) $(DEFINES) -c $(INCLUDES) $< -o $@
+
+exports_python_linux.o : exports_python_linux.cpp
+       $(CXX) $(CXXFLAGS) $(DEFINES) -c $(INCLUDES) $< -o $@
+
+wrapper.def : wrapper.o
+       nm wrapper.o | grep __wrap | awk '{printf("%s ", $$3);}' | sed "s/___wrap_/__wrap_/g" | sed "s/__wrap_/-Wl,-wrap,/g" > $@