home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / demos / xgas / Imakefile < prev    next >
Encoding:
Makefile  |  1991-08-26  |  1.7 KB  |  42 lines

  1. XCOMM $XConsortium: Imakefile,v 1.7 91/08/26 13:34:51 rws Exp $
  2. XCOMM 
  3. XCOMM  xgas
  4. XCOMM 
  5. XCOMM  Copyright 1987, 1988 Massachusetts Institute of Technology
  6. XCOMM 
  7. XCOMM  Permission to use, copy, modify, and distribute this software and its
  8. XCOMM  documentation for any purpose and without fee is hereby granted, provided
  9. XCOMM  that the above copyright notice appear in all copies and that both that
  10. XCOMM  copyright notice and this permission notice appear in supporting
  11. XCOMM  documentation, and that the name of M.I.T. not be used in advertising or
  12. XCOMM  publicity pertaining to distribution of the software without specific,
  13. XCOMM  written prior permission.  M.I.T. makes no representations about the
  14. XCOMM  suitability of this software for any purpose.  It is provided "as is"
  15. XCOMM  without express or implied warranty.
  16. XCOMM 
  17. XCOMM  Author:    Dave Sternlicht X Consortium
  18. XCOMM  Created:   November 27, 1990.
  19. XCOMM  Modified to convert nroff to c:   Larry Medwin, April 14, 1991
  20. XCOMM
  21.  
  22.         DEFINES = $(IEEE_DEFS) $(SIGNAL_DEFINES)
  23.         DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB)
  24. LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
  25.   SYS_LIBRARIES = -lm
  26.            DOCNS = doc.n quick.n
  27.            DOCSRCS = doc.c quick.c
  28.            DOCOBJS = doc.o quick.o
  29.            SRCS = main.c dynamics.c chamber.c timestep.c molecule.c util.c \
  30.                   help.c XGas.c $(DOCSRCS) man.c
  31.            OBJS = main.o dynamics.o chamber.o timestep.o molecule.o util.o \
  32.                   help.o XGas.o $(DOCOBJS) man.o
  33.  
  34.        INCLUDES = -I$(TOOLKITSRC) -I$(TOP)
  35.  
  36. ComplexProgramTarget(xgas)
  37. InstallAppDefaults(XGas)
  38.  
  39. depend:: $(SRCS) $(DOCNS)
  40.  
  41. $(DOCSRCS):: $(DOCNS)
  42.