1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2025-04-21 12:27:27 +03:00

sch2fig/: add Cairo (PNG) back-end (WIP)

This commit is contained in:
Werner Almesberger
2016-07-31 00:04:43 -03:00
parent 4e8870d193
commit 50242899d3
4 changed files with 219 additions and 4 deletions

View File

@@ -11,10 +11,11 @@
#
NAME = sch2fig
OBJS = main.o sch.o lib.o style.o fig.o gfx.o dwg.o text.o misc.o
OBJS = main.o sch.o lib.o style.o fig.o cairo.o gfx.o dwg.o text.o misc.o
CFLAGS = -g -O -Wall -Wextra -Wno-unused-parameter -Wshadow
LIBS = -lm
CFLAGS = -g -O -Wall -Wextra -Wno-unused-parameter -Wshadow \
`pkg-config --cflags cairo`
LIBS = -lm `pkg-config --libs cairo`
include ../common/Makefile.c-common