home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / dshar116.zip / MAKEFILE.UNX < prev    next >
Text File  |  1993-03-10  |  334b  |  17 lines

  1. CFLAGS=-O -DUNIX
  2. #CFLAGS=-O -DUNIX -DFPRINTF_NOVAL -DTOSJIS_def="\"utos\""
  3. LFLAGS=-DUNIX
  4.  
  5. OBJS=dshar.o dshardat.o setargs.o
  6. SRCS=dshar.c dshardat.c setargs.c
  7.  
  8. dshar: $(OBJS)
  9.     cc $(OBJS) -s -o dshar
  10. clean:
  11.     rm -f $(OBJS) dshar core
  12. lint:
  13.     lint $(LFLAGS) $(SRCS)
  14.  
  15. dshar.o: dshar.c common.h
  16. setargs.o: setargs.c common.h
  17.