1/* ************************************************************************* *
2   bugsx - (C) Copyright 1990-1997 Joshua R. Smith (jrs@media.mit.edu)
3	   http://physics.www.media.mit.edu/~jrs
4
5	   (C) Copyright 1995-1997  Robert Gasch (Robert_Gasch@peoplesoft.com)
6	   http://www.peoplesoft.com/peoplepages/g/robert_gasch/index.htm
7
8   Permission to use, copy, modify and distribute this software for any
9   purpose and without fee is hereby granted, provided that this copyright
10   notice appear in all copies as well as supporting documentation. All
11   work developed as a consequence of the use of this program should duly
12   acknowledge such use.
13
14   No representations are made about the suitability of this software for
15   any purpose. This software is provided "as is" without express or implied
16   warranty.
17
18   See the GNU General Public Licence for more information.
19 * ************************************************************************* */
20
21
22
23# basic definitions for the Imake. Call xmkmf to generate the makefile.
24# If you do not have xmkmf installed use Makefile.std to make your
25# own custom makefile.
26
27CC=cc
28LOCAL_LIBRARIES = $(XLIB) -lm
29CCOPTIONS = -O2
30
31EXTRA_DEFINES                 = -DAPP_DEFAULTS_DIR=\"$(XAPPLOADDIR)/\"
32
33
34##############################################################################
35#!!!!!!!!!!!!!!!!!!!!!!! Do not edit below this point !!!!!!!!!!!!!!!!!!!!!!!#
36##############################################################################
37
38OBJS = bugsx.o xbutil.o util.o breed.o grow.o noise.o
39SRCS = bugsx.c xbutil.c util.c breed.c grow.c noise.c
40
41INCLUDES = -I$(TOP) -I$(TOP)/X11
42
43ComplexProgramTarget(bugsx)
44
45bugsx.o: bugsx.c bugsx.h
46xbutil.o: xbutil.c bugsx.h
47util.o: util.c bugsx.h
48breed.o: breed.c bugsx.h
49grow.o: grow.c bugsx.h
50noise.o: noise.c bugsx.h
51
52archive:
53	$(HOME)/sh/makeshar COPYING Copyright Imakefile Makefile.std \
54	Manifest README breed.c bugsx.ps.gz bugsx.c bugsx.h bugsx.man \
55	grow.c noise.c util.c xbutil.c > bugsx.shar
56