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

sch2fig/: eeschema to FIG converter (WIP)

This commit is contained in:
Werner Almesberger
2016-07-21 23:54:32 -03:00
parent 006940d58b
commit 1cff10b824
8 changed files with 779 additions and 0 deletions

19
sch2fig/Makefile Normal file
View File

@@ -0,0 +1,19 @@
NAME = sch2fig
OBJS = main.o sch.o lib.o fig.o
CFLAGS = -g -Wall -Wextra -Wno-unused-parameter
include ../../anelok/common/Makefile.c-common
.PHONY: test
all:: $(NAME)
$(NAME): $(OBJS)
$(CC) -o $(NAME) $(OBJS)
NEO900_HW = ../../../n9/ee/hw/
test: $(NAME)
$(NAME) $(NEO900_HW)/neo900.lib $(NEO900_HW)neo900_SS_1.sch \
>out.fig