Makefile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/make -f
  2. # file: VisualStudioNET/Makefile
  3. # ====================================================================
  4. # environment definitions;
  5. # --------------------------------------------------------------------
  6. include ../make.def
  7. # ====================================================================
  8. #
  9. # --------------------------------------------------------------------
  10. CFLAGS+=
  11. LDFLAGS+=
  12. TRASH=*.o t t.* *.[0-9][0-9][0-9] *~ *.log *.obj *.exe *.suo *.ncb
  13. TOOLS=
  14. # ====================================================================
  15. # pseudo targets;
  16. # --------------------------------------------------------------------
  17. all compile: ${TOOLS}
  18. library:
  19. # install -m ${DIR_PERM} -o ${OWNER} -g ${GROUP} -d ${BIN}
  20. scripts manuals:
  21. install: compile library
  22. # install -m ${BIN_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
  23. uninstall:
  24. # cd ${BIN}; rm -f ${TOOLS}
  25. # cd ${MAN}; rm -f ${PAGES}
  26. clean:
  27. rm -fr _UpgradeReport_Files *.XML .#*
  28. rm -fr */[Dd]ebug */[Rr]elease */*.[0-9][0-9][0-9]
  29. rm -fr Objects/2003/*.?db Objects/2003/*.tlog
  30. rm -fr */*.log */*.tlog */*.manifest */*.unsuccessfulbuild */*.cache
  31. rm -f ${TOOLS} ${TRASH}
  32. check:
  33. # ${SHELL} VisualStudioNET.sh
  34. ignore:
  35. #
  36. # Please do not over-write the local .gitignore file;
  37. #
  38. # echo ${TOOLS} | tr ' ' '\n' > .gitignore
  39. #