XCOMM X-BASED SKEWB
XCOMM
XCOMM	Imakefile
XCOMM
XCOMM ##
XCOMM
XCOMM Copyright (c) 1994 	David Albert Bagley, bagleyd@source.asset.com
XCOMM
XCOMM			All Rights Reserved
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
XCOMM that both that copyright notice and this permission notice appear in
XCOMM supporting documentation, and that the name of the author not be
XCOMM used in advertising or publicity pertaining to distribution of the
XCOMM software without specific, written prior permission.
XCOMM
XCOMM This program is distributed in the hope that it will be "playable",
XCOMM but WITHOUT ANY WARRANTY; without even the implied warranty of
XCOMM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
XCOMM

SCOREFILE	= ./skewb.scores

XCOMM Set "RANDOM" to:
XCOMM	-DHAS_48	if has lrand48() and srand48()
XCOMM	-DHAS_RANDOM	if has random() and srandom()
XCOMM			otherwise, set to empty

RANDOM		= -DHAS_48

XCOMM Set your C compiler if necessary
XCOMM CC	= gcc -g -DDEBUG
XCOMM CC	= gcc -O

XCOMM #############################################################

wIDGET		= skewb
WIDGET		= Skewb
WIDGET2		= $(WIDGET)2d
WIDGET3		= $(WIDGET)3d

DEFINES		= -I. -DSCOREFILE=\"${SCOREFILE}\" ${RANDOM}
LOCAL_LIBRARIES	= ${XTOOLLIB} ${XLIB}
SRCS		= ${WIDGET}.c ${WIDGET2}.c ${WIDGET3}.c x${wIDGET}.c
OBJS		= ${WIDGET}.o ${WIDGET2}.o ${WIDGET3}.o x${wIDGET}.o
PROGRAMS	= x${wIDGET}

ComplexProgramTarget(${PROGRAMS})

${WIDGET}.o: ${WIDGET}.c ${WIDGET}P.h ${WIDGET}.h
${WIDGET2}.o: ${WIDGET2}.c ${WIDGET}P.h ${WIDGET}.h ${WIDGET2}P.h ${WIDGET2}.h
${WIDGET3}.o: ${WIDGET3}.c ${WIDGET}P.h ${WIDGET}.h ${WIDGET3}P.h ${WIDGET3}.h
x${wIDGET}.o: x${wIDGET}.c ${WIDGET}.h ${WIDGET2}.h ${WIDGET3}.h
