File: Makefile

package info (click to toggle)
wkhtmltopdf 0.12.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 772 kB
  • sloc: cpp: 6,148; ansic: 80; makefile: 23
file content (18 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CFLAGS= -I ../include 
LDFLAGS=-L ../bin -lwkhtmltox -Wall -ansi -pedantic -ggdb

EXES=pdf_c_api image_c_api

all: $(EXES)

.PHONY: clean run all

run: pdf_c_api
	LD_LIBRARY_PATH=../bin ./pdf_c_api 

runimage: image_c_api
	LD_LIBRARY_PATH=../bin ./image_c_api

clean:
	$(RM) $(EXES)