mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/branches/pcsx2_0.9.1@159 96395faa-99c1-11dd-bbfe-3dabce05a288
33 lines
584 B
Text
33 lines
584 B
Text
dnl Process this file with autoconf to produce a configure script.
|
|
dnl by Linuzappz <linuzappz@hotmail.com>
|
|
dnl autoconf version 2.13
|
|
|
|
AC_INIT(LnxMain.c)
|
|
AM_INIT_AUTOMAKE(PCSX2, 0.9)
|
|
AM_MAINTAINTER_MODE
|
|
AC_PROG_CC
|
|
AC_CHECK_PROG(STRIP, strip, strip)
|
|
AC_CHECK_PROG(RM, rm, rm)
|
|
|
|
CFLAGS=""
|
|
|
|
dnl check for libraries
|
|
|
|
dnl gtk2=yes
|
|
|
|
AC_MSG_CHECKING(gtk+)
|
|
|
|
AC_CHECK_PROG(GTK-CONFIG, gtk-config, gtk-config)
|
|
|
|
dnl end
|
|
|
|
AC_SUBST(CFLAGS)
|
|
AC_SUBST(OBJS)
|
|
AC_SUBST(LIBS)
|
|
AC_SUBST(STRIP)
|
|
AC_SUBST(RM)
|
|
AC_SUBST(GTK_CFLAGS)
|
|
AC_SUBST(GTK_LIBS)
|
|
|
|
AC_OUTPUT(Makefile.cfg)
|
|
|