home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / JULCAL10 / MAKEFILE.UX < prev    next >
Text File  |  1992-12-21  |  351b  |  14 lines

  1. #CC=gcc
  2. tjul: tjul.o julcal.o
  3.     $(CC) $(CFLAGS) -o tjul tjul.o julcal.o
  4. julcal.o: julcal.c
  5.     gcc -DMKTIME -c julcal.c
  6. tjul.o: tjul.c julcal.h
  7.     
  8. distrib: julcal10.zip
  9. julcal10.zip: julcal.c julcal.h tjul.c dates.txt data makefile makefile.ux
  10.     zip -o julcal10 julcal.c julcal.h tjul.c dates.txt data makefile makefile.ux
  11.  
  12. clean:
  13.     rm *.o tjul
  14.