You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
247B

  1. # Compile the dgl library
  2. all: build
  3. build: dgl
  4. dgl:
  5. $(MAKE) -C build
  6. clean:
  7. $(MAKE) clean -C build
  8. rm -rf build-*/intermediate
  9. distclean: clean
  10. rm -f build-*/Makefile
  11. rm -f build-*/*.make
  12. rm -f build-*/*.sln
  13. rm -f build-*/*.vcproj