mirror of
git://projects.qi-hardware.com/fped.git
synced 2025-04-21 12:27:27 +03:00
- Makefile: fixed odd indentation of "clean" target
- Makfile: added "install" and "uninstall" targets - when deleting the currently active frame reference, reset active_ref of the frame, so that it can be set to a new value later - during instantiation, circles were classified as arcs - end point of KiCad circle didn't mirror the Y axis git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5457 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
@@ -10,6 +10,8 @@
|
||||
# (at your option) any later version.
|
||||
#
|
||||
|
||||
PREFIX = /usr/local
|
||||
|
||||
OBJS = fped.o expr.o coord.o obj.o delete.o inst.o util.o error.o \
|
||||
unparse.o file.o dump.o kicad.o postscript.o meas.o \
|
||||
cpp.o lex.yy.o y.tab.o \
|
||||
@@ -67,7 +69,7 @@ endif
|
||||
|
||||
# ----- Rules -----------------------------------------------------------------
|
||||
|
||||
.PHONY: all dep depend clean
|
||||
.PHONY: all dep depend clean install uninstall
|
||||
|
||||
.SUFFIXES: .fig .xpm
|
||||
|
||||
@@ -111,6 +113,14 @@ endif
|
||||
|
||||
# ----- Cleanup ---------------------------------------------------------------
|
||||
|
||||
clean:
|
||||
clean:
|
||||
rm -f $(OBJS) $(XPMS:%=icons/%)
|
||||
rm -f lex.yy.c y.tab.c y.tab.h y.output .depend
|
||||
|
||||
# ----- Install / uninstall ---------------------------------------------------
|
||||
|
||||
install:
|
||||
install -m 755 fped $(PREFIX)/bin/
|
||||
|
||||
uninstall:
|
||||
rm -f $(PREFIX)/bin/fped
|
||||
|
||||
Reference in New Issue
Block a user