home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / auucp+-1.02 / fuucp_plus_src.lzh / unsharmap / Makefile < prev    next >
Encoding:
Makefile  |  1990-11-21  |  801 b   |  40 lines

  1. # Makefile for unsharmap under SCO XENIX 386
  2. #
  3. #  Version      :       Wed, 16-May-90 / 19:11 / (pf@artcom0)
  4. #    Documented for net distribution.
  5.  
  6. # Things to do:
  7. #    make            make executables
  8. #    make all         "       "
  9. #    make install        perform XENIX installation
  10. #    make clean        cleanup this directory
  11. #    make clobber        clean ...and remove executables from this dir
  12. #     make shar        create a file 'unpack-map.sha'
  13.  
  14. SHELL=        /bin/sh
  15. CFLAGS    =    -O
  16.  
  17. OBJECTS =    unsharmap.o
  18.  
  19. all:        unsharmap
  20.  
  21. unsharmap:    $(OBJECTS)
  22.         cc $(CFLAGS) $(OBJECTS) -o unsharmap
  23.  
  24. $(OBJECTS):
  25.         cc $(CFLAGS) -c $<
  26.  
  27. clean:
  28.         rm -f *.o *.ln a.out core
  29.  
  30. clobber:    clean
  31.         rm -f unsharmap 
  32.  
  33. install:    all 
  34.         ./install
  35.  
  36. shar:        
  37.         shar -cgvp'Z ' README map.daily mkpaths Makefile \
  38.                 unsharmap.c install avoid-unido \
  39.                 getmap patch.README > unpack-map.sha
  40.