mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-23 13:19:41 +02:00
20 lines
346 B
Makefile
20 lines
346 B
Makefile
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
|