Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1009 B

  1. !include ..\makefile.inc
  2. TARGET_EXE=enduser.exe
  3. LIBS = $(C6_LOC)\lib\llibce.lib ..\iolib\io.lib ..\displib\display.lib ..\misclib\misc.lib
  4. OBJS = enduser.obj restore.obj misc.obj display.obj text.obj gauge.obj oschoice.obj expand.obj io.obj
  5. $(TARGET_EXE): $(OBJS) $(LIBS) makefile
  6. link_60 @<<
  7. $(OBJS) /NOI /STACK:0x1000 $(LINK_DBG_FLAGS)
  8. $(TARGET_EXE)
  9. nul
  10. $(LIBS)
  11. <<
  12. enduser.obj: enduser.c ..\inc\msgfile.h ..\inc\mytypes.h
  13. oschoice.obj: oschoice.c ..\inc\msgfile.h ..\inc\mytypes.h
  14. restore.obj: restore.c ..\inc\diskio.h ..\inc\mytypes.h
  15. expand.obj: expand.c ..\inc\diskio.h ..\inc\mytypes.h
  16. display.obj: display.c enduser.h ..\inc\mytypes.h makefile ..\makefile.inc
  17. misc.obj: misc.c enduser.h ..\inc\mytypes.h ..\inc\diskio.h makefile ..\makefile.inc
  18. text.obj: text.c enduser.h ..\inc\mytypes.h ..\inc\msgfile.h makefile ..\makefile.inc
  19. gauge.obj: gauge.c enduser.h ..\inc\mytypes.h makefile ..\makefile.inc
  20. io.obj: io.c enduser.h ..\inc\diskio.h ..\inc\mytypes.h makefile ..\makefile.inc