Audio Notaz (from mupen64plus v1.5) plugin. Compile and run (very well) on the OpenPa...
[mupen64plus-pandora.git] / source / notaz_audio / Makefile
diff --git a/source/notaz_audio/Makefile b/source/notaz_audio/Makefile
new file mode 100755 (executable)
index 0000000..1c2d3f4
--- /dev/null
@@ -0,0 +1,51 @@
+#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+# *   Mupen64plus - Makefile                                                *
+# *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
+# *   Copyright (C)                                                         *
+# *                                                                         *
+# *   This program is free software; you can redistribute it and/or modify  *
+# *   it under the terms of the GNU General Public License as published by  *
+# *   the Free Software Foundation; either version 2 of the License, or     *
+# *   (at your option) any later version.                                   *
+# *                                                                         *
+# *   This program is distributed in the hope that it will be useful,       *
+# *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+# *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+# *   GNU General Public License for more details.                          *
+# *                                                                         *
+# *   You should have received a copy of the GNU General Public License     *
+# *   along with this program; if not, write to the                         *
+# *   Free Software Foundation, Inc.,                                       *
+# *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
+# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+# include pre-make file with a bunch of definitions
+#USES_GTK2 = true
+#include ../pre.mk
+CFLAGS += -I ../mupen64plus-core/src/api/
+
+# local CFLAGS, LIBS, and LDFLAGS
+ifneq "$(CPU)" "ARM"
+CFLAGS += -fpic -DPIC
+endif
+CFLAGS += -Wall -ggdb -gdwarf-2
+
+LDFLAGS += -ldl
+
+TARGET = notaz_audio.so
+OBJECTS = main.o osal_dynamiclib_unix.o
+
+# build targets
+all: $(TARGET)
+
+clean:
+       rm -f *.o *.so
+
+# build rules
+.c.o:
+       $(CC) $(CFLAGS) $(SRC_FLAGS) -c -o $@ $<
+
+$(TARGET): $(OBJECTS)
+       $(CC)  -shared $^ $(LDFLAGS) $(PLUGIN_LDFLAGS) $(SRC_LIBS) -o $@
+#      $(STRIP) $@
+