Makefile 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # /*
  3. # * This program is free software: you can redistribute it and/or modify
  4. # * it under the terms of the GNU General Public License as published by
  5. # * the Free Software Foundation, either version 3 of the License, or
  6. # * (at your option) any later version.
  7. # *
  8. # * This program is distributed in the hope that it will be useful,
  9. # * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # * GNU General Public License for more details.
  12. # *
  13. # * You should have received a copy of the GNU General Public License
  14. # * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. # *
  16. # * SPDX-License-Identifier: GPL-3.0+
  17. # * License-Filename: LICENSE
  18. # *
  19. # */
  20. #
  21. all: sparse/libsparse.a
  22. cd src && make all
  23. echo "ready"
  24. sparse/libsparse.a:
  25. cd sparse && make libsparse.a
  26. indent:
  27. cd src && make indent
  28. diff:
  29. diff sparse-0.6.3 sparse >sparse.patch
  30. cleaner:
  31. clean:
  32. cd src && make clean
  33. cd sparse && make clean
  34. rm dsmake.output
  35. # end