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:
19
sch2fig/Makefile
Normal file
19
sch2fig/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user