makefile.vms 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #************************************************************************
  2. # Makefile for HELLO 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 = hello
  19. # Object modules of the application.
  20. OBJS = hello.obj
  21. .include [--.src]makevms.env
  22. # main dependency
  23. $(MAIN).exe : $(MAIN).$(OBJ)
  24. $(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(MAIN).$(OBJ),$(WXLIB)/lib,$(OPTSFILE)/option
  25. - purge *.exe
  26. #************************************************************************
  27. # Header file depedencies following
  28. #************************************************************************
  29. hello.obj : hello.cc hello.h