home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / l / libxtgeo.zip / libgeo17 / Makefile < prev    next >
Makefile  |  1992-10-06  |  834b  |  33 lines

  1. # If you want to play with Imake:
  2. #  change that line to point to some place that has:
  3. #   the regular R5 headers: ./X11
  4. #   the private Xt stuff:   ./lib/Xt
  5. #   the editres stuff:      ./X11/Xmu  (or use NO_EDITRES if you don't want it)
  6. # (or you can change the CFLAGS line if you can't find that in one place)
  7.  
  8. TOPX = /project/motif/build/X11r5/sun
  9.  
  10. CFLAGS = -I$(TOPX) -I$(TOPX)/lib/Xt 
  11.  
  12. XTGEO_OBJS =\
  13.     geoTattler.o \
  14.     geoGeometry.o \
  15.     geoManage.o \
  16.     geoIntrinsic.o \
  17.     geoSetValues.o \
  18.     geoShell.o
  19.  
  20. libXtGeo.a: $(XTGEO_OBJS)
  21.     rm -rf $@
  22.     ar clq $@ $(XTGEO_OBJS)
  23.     ranlib $@ 
  24.  
  25. # To use libXtGeo, relink the client with libXtGeo.a before libXt.a
  26. # and modify your .Xdefaults to fire the tattling.
  27.  
  28. # if you use editres (default), add -lXmu to your link line,
  29. # or, if you don't have it handy, archive EditresCom.o within libXtGeo.a.
  30.  
  31.  
  32.  
  33.