Makefile 411 B

12345678910111213141516171819
  1. thisdir = tools/SqlSharp
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LOCAL_MCS_FLAGS = /r:System.dll /r:System.Xml.dll /r:System.Data.dll
  5. PROGRAM = sqlsharp.exe
  6. EXTRA_DISTFILES = README
  7. include ../../build/executable.make
  8. # Disable test for now
  9. #run-test-local: run-sqlsharp-test
  10. run-sqlsharp-test: $(PROGRAM)
  11. $(TEST_RUNTIME) $(PROGRAM) -A $(PROGRAM) $(ARGS)
  12. run: $(PROGRAM)
  13. $(RUNTIME) $(PROGRAM) $(ARGS)