XCOMM xdemineur 1.1 - X11 minefield game
XCOMM
XCOMM Author: Marc Baudoin (baudoin@ensta.fr)
XCOMM
XCOMM            |\
XCOMM          |\| \
XCOMM          |//  )
XCOMM        |\ /  /        /\/\_
XCOMM        |//  /        /. . /
XCOMM      |\ /  /     ___/    |_
XCOMM      |//  /     (____/    /_/\_
XCOMM       |__|      (_____/ __     >
XCOMM     /| ___  ________ _< \ \__  >
XCOMM     \|| __\| _|_   _/ \\ \___\/
XCOMM       | __\____ | |/ _ \\    >
XCOMM     /||___\_____|___/ \_\\  _>
XCOMM     \|____           ____ \|
XCOMM       \   \_________/   /
XCOMM        \   _    _      /
XCOMM         \_//   //_____/
XCOMM           (_   \ (_  _\
XCOMM             |/\|   \/
XCOMM
XCOMM Ecole Nationale Superieure de Techniques Avancees (ENSTA)
XCOMM 32, boulevard Victor - 75015 Paris - France
XCOMM
XCOMM Copyright (C) 1993 Marc Baudoin
XCOMM
XCOMM Permission to use, copy, modify, and distribute this software and
XCOMM its documentation for any purpose and without fee is hereby granted,
XCOMM provided that the above copyright notice appear in all copies and that
XCOMM both that copyright notice and this permission notice appear in
XCOMM supporting documentation.  The author makes no representations about
XCOMM the suitability of this software for any purpose.  It is provided "as is"
XCOMM without express or implied warranty.



/*
 * You have to choose the random generator function you want xdemineur to use.
 * If your C library has lrand48(), use it! Otherwise use random() and if you
 * don't have random(), use rand().
 *
 */

DEFINES = -DUSE_RAND48      /* uses the lrand48() function */
/* DEFINES = -DUSE_RANDOM   /* uses the random() function */
/* DEFINES = -DUSE_RAND     /* uses the rand() function */

/* You don't need to change anything below this line */

LOCAL_LIBRARIES = $(XLIB)
        DEPLIBS = $(DEPXLIB)
           SRCS = demineur.c xdemineur.c main.c
           OBJS = demineur.o xdemineur.o main.o

ComplexProgramTarget(xdemineur)
