filename | src/Makefile.am |
changeset | 1245:01e0020adf88 |
prev | 1239:be3121267597 |
next | 1258:f8a9c0fd2abb |
author | nkeynes |
date | Fri Mar 02 23:49:10 2012 +1000 (8 years ago) |
permissions | -rw-r--r-- |
last change | Android WIP: * Rename gui_jni.c to gui_android.c - now quite android specific. * Implement generic EGL driver with very minimal Java wrapper * Run emulation in separate thread, and implement simple queue for inter-thread communication. * Add menu/action-bar items for start + reset |
file | annotate | diff | log | raw |
1.1 --- a/src/Makefile.am Sat Feb 25 21:30:49 2012 +10001.2 +++ b/src/Makefile.am Fri Mar 02 23:49:10 2012 +10001.3 @@ -111,11 +111,11 @@1.4 endif1.6 if GUI_ANDROID1.7 -lxdream_SOURCES += gui_none.c1.8 +lxdream_SOURCES += gui_none.c drivers/video_egl.c drivers/video_egl.h1.9 noinst_PROGRAMS=liblxdream.so1.10 liblxdream_so_LINK = $(LINK) -Wl,-soname,liblxdream.so -shared1.11 liblxdream_so_LDADD = liblxdream-core.a @GLIB_LIBS@ @GTK_LIBS@ @LIBPNG_LIBS@ @LIBISOFS_LIBS@ $(INTLLIBS) @LXDREAM_LIBS@ -lm1.12 -liblxdream_so_SOURCES = gui_jni.c drivers/cdrom/cd_none.c1.13 +liblxdream_so_SOURCES = gui_android.c drivers/cdrom/cd_none.c drivers/video_egl.c drivers/video_egl.h tqueue.c tqueue.h1.14 liblxdream_so_LIBS = liblxdream-core.a1.15 endif
.