home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / stex2-18.zip / SeeTeX / Texsun / Makefile.raw < prev    next >
Makefile  |  1989-11-15  |  441b  |  20 lines

  1. OBJS    =texsun.o
  2. SRCS    =texsun.c
  3.  
  4.       LIBTEXROOT= ../
  5.       LIBTEXSRC    = ../libtex
  6.          LIBTEX    = $(LIBTEXSRC)/libtex.a
  7.       DEPLIBTEX    = $(LIBTEX)
  8.         SYSLIBS = -lsuntool -lsunwindow -lpixrect -lm
  9.         DEPLIBS = $(DEPLIBTEX) 
  10. LOCAL_LIBRARIES = $(LIBTEX)
  11.  
  12.         DEFINES = -I$(LIBTEXROOT)
  13.  
  14.          CFLAGS = $(DEFINES) -I$(LIBTEXROOT)
  15.  
  16. all: texsun
  17.  
  18. texsun: texsun.c
  19.     $(CC) $(CFLAGS) -o texsun texsun.c $(LOCAL_LIBRARIES) $(SYSLIBS)
  20.