HOME=$(BIN_MAIN_INTER)
EXTRA_CFLAGS=-I..
LIST=../lib.a $(GISLIB)

all: $(HOME)/g.copy $(HOME)/g.list $(HOME)/g.rename $(HOME)/g.remove

$(HOME)/g.copy: copy.o $(LIST)
	$(CC) $(LDFLAGS) -o $@ copy.o $(LIST) $(TERMLIB)
$(HOME)/g.list: list.o $(LIST)
	$(CC) $(LDFLAGS) -o $@ list.o $(LIST) $(TERMLIB)
$(HOME)/g.rename: rename.o $(LIST)
	$(CC) $(LDFLAGS) -o $@ rename.o $(LIST) $(TERMLIB)
$(HOME)/g.remove: remove.o $(LIST)
	$(CC) $(LDFLAGS) -o $@ remove.o $(LIST) $(TERMLIB)

$(LIST): #
