home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / xcron / xcron.mak < prev   
Encoding:
Makefile  |  1994-06-03  |  601 b   |  35 lines

  1. # MicroSoft NMAKE make file
  2. NAME    = xCron
  3.  
  4. !ifdef NO_BATCH
  5. OBJNAME = DosCron
  6. CFLAGS  = -c -AT -Gs -Oi -DNO_BATCH -Fo$(OBJNAME) -W4
  7. !else
  8. OBJNAME = BatCron
  9. CFLAGS  = -c -AT -Gs -Oi -Fo$(OBJNAME) -W4
  10. !endif
  11.  
  12. RUNFILE = $(OBJNAME).Com
  13. CC      = CL
  14. OBJS    = CRTCOM.LIB
  15. DEPS    = $(NAME).C $(NAME).Mak
  16. LFLAGS  = /tiny /noi /noe
  17. DEFFILE = nul
  18. MAPFILE = nul
  19. LIBS    =
  20.  
  21. all:$(RUNFILE)
  22.  
  23. $(RUNFILE)::$(OBJNAME).Obj
  24.     link $(LFLAGS) @<<
  25. $(OBJS) $(OBJNAME)
  26. $(RUNFILE)
  27. $(MAPFILE).map
  28. $(LIBS)
  29. $(DEFFILE).def;
  30. <<
  31.  
  32. $(OBJNAME).Obj:$(NAME).C $(DEPS)
  33.     $(CC) $(CFLAGS) $(NAME).c
  34.  
  35.