home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume21 / xwinpr / part01 / Imakefile next >
Encoding:
Makefile  |  1993-10-20  |  1.8 KB  |  59 lines

  1. /*
  2.  * Copyright (C) 1993    Tetsuji Rai (tetsuji@rai.juice.or.jp)
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and its
  5.  * documentation for any purpose is hereby granted without fee, provided that
  6.  * the above copyright notice appear in all copies and that both that
  7.  * copyright notice and this permission notice appear in supporting
  8.  * documentation, and that the name of Tetsuji Rai not be used in
  9.  * advertising or publicity pertaining to distribution of the software
  10.  * without specific, written prior permission.  Tetsuji Rai makes
  11.  * no representations about the suitability of this software for any purpose.
  12.  * It is provided "as is" without express or implied warranty.
  13.  *
  14.  * TETSUJI RAI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  15.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO
  16.  * EVENT SHALL TETSUJI RAI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  17.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  18.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  19.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  20.  * OF THIS SOFTWARE.
  21.  *
  22.  * Author:  Tetsuji Rai
  23.  *          tetsuji@rai.juice.or.jp
  24.  *          74610.1537@Compuserve.Com
  25.  *          +81-3-3557-3936
  26.  */
  27.  
  28. .SUFFIXES: .c .C .cc .o .y .l
  29.  
  30. .C.o:
  31.     $(CC) $(CFLAGS) -c $<
  32.  
  33. CC = g++ -g     /* gcc 2.3.3 prefered */
  34. # CC = cc -g
  35.  
  36. LOCAL_LIBRARIES += $(XLIB) $(XMULIB) -lm
  37. EXTRA_LIBRARIES = $(LOCAL_LIBRARIES)
  38.  
  39. DEFINES = $(XAWINCL) $(MOTIF) $(BCOPY) $(MEMCPY) $(VASIMPLE)
  40.  
  41.  
  42.  
  43. DEPENDFLAGS += -I/usr/local/lib/g++-include
  44.  
  45. MAN = xwinpr.man
  46. SRCS = xwinpr.C
  47. OBJS = xwinpr.o
  48. HEADERS = patchlevel.h
  49. ETC = Imakefile README Makefile
  50.  
  51. CC = g++ -g
  52.  
  53. ComplexProgramTarget (xwinpr)
  54.  
  55. DependTarget ()
  56.  
  57. shar:
  58.     shar $(ETC) $(SRCS) $(HEADERS) $(MAN) > xwinpr.shar
  59.