diff options
author | PCSX* teams | 2010-11-16 14:15:22 +0200 |
---|---|---|
committer | Grazvydas Ignotas | 2010-11-16 14:15:22 +0200 |
commit | ef79bbde537d6b9c745a7d86cb9df1d04c35590d (patch) | |
tree | ef8d2520dbb9e1e345b41b12c9959f300ca8fd10 /plugins/peopsxgl/Makefile.am | |
download | pcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.tar.gz pcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.tar.bz2 pcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.zip |
pcsxr-1.9.92
Diffstat (limited to 'plugins/peopsxgl/Makefile.am')
-rw-r--r-- | plugins/peopsxgl/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/peopsxgl/Makefile.am b/plugins/peopsxgl/Makefile.am new file mode 100644 index 0000000..d88dc94 --- /dev/null +++ b/plugins/peopsxgl/Makefile.am @@ -0,0 +1,24 @@ +INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \ + -DLOCALE_DIR=\"${datadir}/locale/\" \ + -DDATADIR=\"${datadir}/psemu/\" \ + $(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \ + -I../../libpcsxcore -I../../include -fPIC + +bindir = @libdir@/games/psemu/ +libdir = @libdir@/games/psemu/ + +lib_LTLIBRARIES = libpeopsxgl.la + +libpeopsxgl_la_SOURCES = cfg.c draw.c fps.c gpu.c key.c menu.c \ + prim.c soft.c texture.c +libpeopsxgl_la_LDFLAGS = -module -avoid-version \ + -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -lXxf86vm -lGL -lm + +bin_PROGRAMS = cfgpeopsxgl +cfgpeopsxgl_SOURCES = gpucfg/main.c gpucfg/callbacks.c gpucfg/interface.c \ + gpucfg/support.c +cfgpeopsxgl_LDADD = $(GTK2_LIBS) $(GLADE2_LIBS) + +#glade_DATA = gpucfg-0.1df/peopsxgl.glade2 +#gladedir = $(datadir)/psemu/ +#EXTRA_DIST = $(glade_DATA) |