makefile 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- make -*-
  2. BASE=../..
  3. SUBDIR=test/libapt
  4. BASENAME=_libapt_test
  5. # Bring in the default rules
  6. include ../../buildlib/defaults.mak
  7. # Program for testing getLanguageCode
  8. PROGRAM = getLanguages${BASENAME}
  9. SLIBS = -lapt-pkg
  10. SOURCE = getlanguages_test.cc
  11. include $(PROGRAM_H)
  12. # Program for testing ParseDepends
  13. PROGRAM = ParseDepends${BASENAME}
  14. SLIBS = -lapt-pkg
  15. SOURCE = parsedepends_test.cc
  16. include $(PROGRAM_H)
  17. # Program for testing GetListOfFilesInDir
  18. PROGRAM = GetListOfFilesInDir${BASENAME}
  19. SLIBS = -lapt-pkg
  20. SOURCE = getlistoffilesindir_test.cc
  21. include $(PROGRAM_H)
  22. # Program for testing CommandLine reconstruction
  23. PROGRAM = commandlineasstring${BASENAME}
  24. SLIBS = -lapt-pkg
  25. SOURCE = commandlineasstring_test.cc
  26. include $(PROGRAM_H)
  27. # Program for testing debians version comparing
  28. PROGRAM = compareversion${BASENAME}
  29. SLIBS = -lapt-pkg
  30. SOURCE = compareversion_test.cc
  31. include $(PROGRAM_H)