/**** Optional defines:  Change as you see fit. *****************************
*
* -DBSDCOMPAT
*      Compiling under BSD-derived or BSD-like OS
*
* -DNO_STDLIB_H
*      The system does not support <stdlib.h>
*/
#if defined(SYSTYPE_BSD43) || defined(BSD43) || defined(BSD) || \
   defined(FreeBSDArchitecture) || defined(OsfArchitecture) || \
   (defined(SunArchitecture) && OSMajorVersion == 4)
DEFINES= -DLINUX
#else
DEFINES= -DLINUX

#endif

# CC = gcc -g -Wall -O2  -L/usr/X11R6/lib
CC = gcc -g -Wall -O2 -DNOMAIN

ALLINCLUDES =

/*
* libs to link with
*/

LOCAL_LIBRARIES= -lforms -lXpm -lXm -lXt -lX11 -lXext -lm

/*
* C Source files
*/
SRCS=   first.c \
       range.c \
       display.c \
       if_change.c \
       Tree.c

/*
* Objects
*/
OBJS=   first.o \
       range.o \
       display.o \
       if_change.o \
       Tree.o
/*
* Build rule for the main module
*/
#ifdef InstallProgram
#undef InstallProgram
#define InstallProgram(program, dest)
#endif
ComplexProgramTarget(test)