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

- when displaying loop iterations, we now use the active count, not just the

last count
- loop iterations now show the actual value, not the zero-based iteration 
  number
- gui.html: added a GUI manual (in progress)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5531 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-22 22:55:39 +00:00
parent 63e60182bb
commit d9b7ad94ec
11 changed files with 265 additions and 3 deletions

View File

@@ -12,6 +12,8 @@
PREFIX = /usr/local
UPLOAD = werner@sita.openmoko.org:public_html/fped/
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 \
@@ -25,6 +27,8 @@ XPMS = point.xpm delete.xpm delete_off.xpm \
stuff.xpm stuff_off.xpm meas_off.xpm \
bright.xpm bright_off.xpm all.xpm all_off.xpm
PNGS = intro-1.png intro-2.png intro-3.png intro-4.png intro-5.png intro-6.png
SHELL = /bin/bash
CFLAGS_GTK = `pkg-config --cflags gtk+-2.0`
LIBS_GTK = `pkg-config --libs gtk+-2.0`
@@ -71,7 +75,7 @@ endif
# ----- Rules -----------------------------------------------------------------
.PHONY: all dep depend clean install uninstall
.PHONY: all dep depend clean install uninstall upload-manual
.SUFFIXES: .fig .xpm
@@ -102,6 +106,13 @@ y.tab.o: y.tab.c
gui_tool.o gui.o: $(XPMS:%=icons/%)
# ----- Upload the GUI manual -------------------------------------------------
upload-manual: $(XPMS:%=icons/%)
scp gui.html README $(UPLOAD)/
scp $(XPMS:%=icons/%) $(UPLOAD)/icons/
scp $(PNGS:%=screens/%) $(UPLOAD)/screens/
# ----- Dependencies ----------------------------------------------------------
dep depend .depend: lex.yy.c y.tab.h y.tab.c