Makefile: add missing dependency, thanks to Sergio Pascual

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@831 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2007-07-01 20:01:44 +00:00
parent ec38e7236e
commit 6dbd2e38f8

View file

@ -37,7 +37,7 @@ $(BIN1): $(OBJ1) $(LIB1) $(LIB2)
$(LIB1): $(OBJ2)
$(CXX) $(SHARED_LIB_FLAG) $(LDFLAGS) -o $@ $^ $(LDLIBS)
$(LIB2): $(OBJ3)
$(LIB2): $(OBJ3) $(LIB1)
$(CXX) $(SHARED_LIB_FLAG) $(LDFLAGS) -L. -o $@ $^ -lfoo $(LDLIBS)
clean: cleandeps