mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
Makefile.am changes for AIX5. Almost all boilerplate stuff fitting in with the existing factorisation scheme. The only change of interest is that configure.in now generates automake symbols of name VGP_platform and VGO_os, whereas previously it just made VG_platform which was a bit inconsistent with the VGP/VGO/VGA scheme used in C code. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6242
38 lines
820 B
Makefile
38 lines
820 B
Makefile
add_includes_x86_linux = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_x86=1 \
|
|
-DVGO_linux=1 \
|
|
-DVGP_x86_linux=1
|
|
|
|
add_includes_amd64_linux = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_amd64=1 \
|
|
-DVGO_linux=1 \
|
|
-DVGP_amd64_linux=1
|
|
|
|
add_includes_ppc32_linux = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_ppc32=1 \
|
|
-DVGO_linux=1 \
|
|
-DVGP_ppc32_linux=1
|
|
|
|
add_includes_ppc64_linux = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_ppc64=1 \
|
|
-DVGO_linux=1 \
|
|
-DVGP_ppc64_linux=1
|
|
|
|
add_includes_ppc32_aix5 = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_ppc32=1 \
|
|
-DVGO_aix5=1 \
|
|
-DVGP_ppc32_aix5=1
|
|
|
|
add_includes_ppc64_aix5 = -I$(top_srcdir)/include \
|
|
-I@VEX_DIR@/pub \
|
|
-DVGA_ppc64=1 \
|
|
-DVGO_aix5=1 \
|
|
-DVGP_ppc64_aix5=1
|
|
|
|
include $(top_srcdir)/Makefile.flags.am
|