1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-09-16 07:36:27 +03:00
eda-tools/sch2fig/Makefile
2016-07-23 14:59:37 -03:00

39 lines
840 B
Makefile

#
# Makefile - build sch2fig
#
# Written 2016 by Werner Almesberger
# Copyright 2016 by Werner Almesberger
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
NAME = sch2fig
OBJS = main.o sch.o lib.o fig.o text.o misc.o
CFLAGS = -g -Wall -Wextra -Wno-unused-parameter
LIBS = -lm
include ../common/Makefile.c-common
.PHONY: test
all:: $(NAME)
$(NAME): $(OBJS)
$(CC) -o $(NAME) $(OBJS) $(LIBS)
NEO900_HW = ../../../n9/ee/hw
KICAD_LIBS = ../../kicad-libs/components
sch:
eeschema test.sch
test: $(NAME)
./$(NAME) $(NEO900_HW)/neo900.lib \
$(KICAD_LIBS)/powered.lib \
$(NEO900_HW)/neo900_SS_1.sch \
>out.fig