Makefile 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #!/usr/bin/make -f
  2. # file: programs/Makefile
  3. # ====================================================================
  4. # environment definitions;
  5. # --------------------------------------------------------------------
  6. include ../make.def
  7. # ====================================================================
  8. # symbols;
  9. # --------------------------------------------------------------------
  10. CXXFLAGS+=
  11. LDFLAGS+=
  12. VPATH=../classes:../tools
  13. TRASH=*.o *.obj *.exe t t.* *~ *.[0-9][0-9][0-9]
  14. FILES=*.cpp *.hpp *.h *.sh *.xml *.txt *.mak Makefile Makefile.*
  15. TOOLS=netifs hpavkey example-1 example-2 example-3 example-4 example-5
  16. TOOLS=netifs hpavkey plcnets chknvm3
  17. TOOLS+=example-1 example-2 example-3 example-4 example-5
  18. PAGES=hpavkey.1 netifs.1 plcnets.1
  19. # ====================================================================
  20. # pseudo targets;
  21. # --------------------------------------------------------------------
  22. all compile: ${TOOLS}
  23. echo ${TOOLS} | tr ' ' '\n' > .gitignore
  24. compact: compile
  25. if [ ! -z ${STRIP} ]; then ${STRIP} ${TOOLS}; fi
  26. if [ -x /usr/local/bin/upx ]; then upx --best ${TOOLS}; fi
  27. library:
  28. install -m ${DIR_PERM} -o ${OWNER} -g ${GROUP} -d ${BIN}
  29. scripts:
  30. manuals:
  31. install -m ${MAN_PERM} -o ${OWNER} -g ${GROUP} ${PAGES} ${MAN}
  32. install: compile library
  33. install -m ${SUID_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
  34. uninstall:
  35. root -c cd ${BIN}; rm -f ${TOOLS}
  36. clean:
  37. rm -f ${TOOLS} ${TRASH}
  38. check:
  39. ${SHELL} programs.sh
  40. ignore:
  41. echo ${TOOLS} | tr ' ' '\n' > .gitignore
  42. # ====================================================================
  43. # programs;
  44. # --------------------------------------------------------------------
  45. %: %.o
  46. ${CXX} -o ${@} ${^} ${LDFLAGS}
  47. %.o: %.cpp
  48. ${CXX} -c ${<} ${CXXFLAGS}
  49. %.hpp: %.hpp
  50. # ====================================================================
  51. # programs;
  52. # --------------------------------------------------------------------
  53. netifs: netifs.o omemory.o oerror.o ointerface.o ointerfaces.o
  54. hpavkey: hpavkey.o ogetoptv.o oputoptv.o oversion.o oerror.o oflagword.o omemory.o oSHA256.o oHPAVKey.o
  55. plcnets: plcnets.o ogetoptv.o oputoptv.o oversion.o oerror.o oflagword.o omemory.o oethernet.o ohomeplug.o ointellon.o ointerface.o ointerfaces.o CPLChannel.o CPLNetworks.o CPLNetwork.o CPLStation.o
  56. # ====================================================================
  57. # examples;
  58. # --------------------------------------------------------------------
  59. chknvm3: chknvm3.o ogetoptv.o oputoptv.o oversion.o oerror.o omemory.o ointerface.o oethernet.o ointellon.o ohomeplug.o oflagword.o CPLFirmware.o CPLChannel.o
  60. example-1: example-1.o omemory.o oerror.o ointerface.o ointerfaces.o
  61. example-2: example-2.o omemory.o oerror.o oflagword.o oethernet.o ohomeplug.o ointellon.o ointerface.o ointerfaces.o CPLChannel.o
  62. example-3: example-3.o omemory.o oerror.o oflagword.o oethernet.o ohomeplug.o ointellon.o ointerface.o CPLChannel.o CPLNetwork.o CPLStation.o
  63. example-4: example-4.o omemory.o oerror.o oflagword.o oethernet.o ohomeplug.o ointellon.o ointerface.o ointerfaces.o CPLChannel.o CPLNetwork.o CPLStation.o
  64. example-5: example-5.o omemory.o oerror.o oflagword.o oethernet.o ohomeplug.o ointellon.o ointerface.o ointerfaces.o CPLChannel.o CPLNetworks.o CPLNetwork.o CPLStation.o
  65. # ====================================================================
  66. #
  67. # --------------------------------------------------------------------
  68. include ../programs/programs.mak
  69. include ../classes/classes.mak
  70. include ../tools/tools.mak