makefile.vms 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #************************************************************************
  2. # Makefile for MDI under VMS
  3. # by Stefan Hammes
  4. # (incomplete) update history:
  5. # 11.04.95
  6. #************************************************************************
  7. #************************************************************************
  8. # Definition section
  9. # (cave: definitions and includes must begin with ',')
  10. #************************************************************************
  11. APPOPTS =
  12. APPDEFS =
  13. APPINCS =
  14. #************************************************************************
  15. # Module section
  16. #************************************************************************
  17. # Name of main module
  18. MAIN = mdi
  19. # Object modules of the application.
  20. OBJS = mdi.obj
  21. OBJLIST =mdi.obj
  22. .include [--.src]makevms.env
  23. # main dependency
  24. $(MAIN).exe : $(OBJS)
  25. $(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(OBJLIST),$(WXLIB)/lib,$(OPTSFILE)/option
  26. - purge *.exe
  27. #************************************************************************
  28. # Header file depedencies following
  29. #************************************************************************