Makefile 284 B

123456789101112131415161718
  1. CFLAGS= -I ../include
  2. LDFLAGS=-L ../bin -lwkhtmltox -Wall -ansi -pedantic -ggdb
  3. EXES=pdf_c_api image_c_api
  4. all: $(EXES)
  5. .PHONY: clean run all
  6. run: pdf_c_api
  7. LD_LIBRARY_PATH=../bin ./pdf_c_api
  8. runimage: image_c_api
  9. LD_LIBRARY_PATH=../bin ./image_c_api
  10. clean:
  11. $(RM) $(EXES)