Commit 1e7b6c02 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Avoid application relink on every make invocation.

parent 3634d7e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -65,9 +65,9 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
top:
	(cd ..; $(MAKE) DIRS=$(DIR) all)

all:	lib
all:	lib subdirs

lib:	$(LIBOBJ) subdirs
lib:	$(LIBOBJ)
	@if [ -n "$(SHARED_LIBS)" ]; then \
		set -e; \
		for l in $(LIBNAMES); do \
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ lib: $(LIBOBJ)
	else \
		$(AR) $(LIB) $(LIBOBJ); \
	fi
	@touch lib

install: 	
	[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...