blob: 040d53e912fddf488ed289b2d9c1ebd8cc225f43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\"${datadir}/pcsxr/\" \
-DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
$(GTK3_CFLAGS) \
-I$(top_srcdir)/libpcsxcore -I$(top_srcdir)/include \
-DPSEMU_DATA_DIR=\"${datadir}/psemu\" \
-DDEF_PLUGIN_DIR=\"${libdir}/games/psemu\"
bin_PROGRAMS = pcsxr
pcsxr_SOURCES = \
LnxMain.c \
Linux.h \
nopic.h \
Plugin.c \
Config.c \
GtkGui.c \
MemcardDlg.c \
MemcardDlg.h \
ConfDlg.c \
ConfDlg.h \
Cheat.c \
Cheat.h \
DebugMemory.c \
DebugMemory.h \
AboutDlg.c \
AboutDlg.h \
gdk-compat.h
pcsxr_LDADD = \
../libpcsxcore/libpcsxcore.a \
$(GTK3_LIBS) -lpthread -lz -lm -lXext -lXtst
|