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

genex/: "genex" is now a wrapper that sets PATH, then calls genex-bin

This commit is contained in:
Werner Almesberger
2012-04-17 17:36:32 -03:00
parent 40a76e1d4a
commit fff142c6de
4 changed files with 8 additions and 5 deletions

View File

@@ -33,9 +33,9 @@ endif
.PHONY: all clean spotless
all: genex
all: genex-bin
genex: $(OBJS)
genex-bin: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDLIBS)
%.o: %.c
@@ -52,4 +52,4 @@ clean:
rm -f $(OBJS) $(OBJS:.o=.d)
spotless: clean
rm -f genex
rm -f genex-bin