Added more dependencies
This commit is contained in:
parent
376f8d5dc2
commit
5c08be7011
4 changed files with 16 additions and 6 deletions
|
|
@ -75,7 +75,7 @@ all: $(LIB) .depends
|
|||
@(for lh in $(ALLKINETICS_H) ; do \
|
||||
$(INSTALL_TSC) "$${lh}" $(INCDIR) ; \
|
||||
done)
|
||||
%.d:
|
||||
%.d: Makefile %.o
|
||||
@CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d
|
||||
|
||||
.cpp.o:
|
||||
|
|
@ -110,6 +110,8 @@ depends:
|
|||
.depends: $(DEPENDS)
|
||||
cat $(DEPENDS) > .depends
|
||||
|
||||
$(ALLKINETICS_OBJ): Makefile
|
||||
|
||||
TAGS:
|
||||
etags *.h *.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ all: .depends $(LIB)
|
|||
@(for lh in $(NUMERICS_H) ; do \
|
||||
$(INSTALL_TSC) "$${lh}" $(INCDIR) ; \
|
||||
done)
|
||||
%.d:
|
||||
%.d: Makefile %.o
|
||||
@CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d
|
||||
|
||||
.cpp.o:
|
||||
|
|
@ -95,6 +95,8 @@ depends:
|
|||
.depends: $(DEPENDS)
|
||||
cat $(DEPENDS) > .depends
|
||||
|
||||
$(NUMERICS_OBJ): Makefile
|
||||
|
||||
TAGS:
|
||||
etags *.h *.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -31,12 +31,12 @@ LIB = @buildlib@/libtransport.a
|
|||
|
||||
DEPENDS = $(OBJS:.o=.d)
|
||||
|
||||
all: .depends $(LIB)
|
||||
all: $(LIB) .depends
|
||||
@(@INSTALL@ -d $(INCDIR))
|
||||
@(for lh in $(TRAN_H) ; do \
|
||||
$(INSTALL_TSC) "$${lh}" $(INCDIR) ; \
|
||||
done)
|
||||
%.d:
|
||||
%.d: Makefile %.o
|
||||
@CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d
|
||||
|
||||
.cpp.o:
|
||||
|
|
@ -71,6 +71,10 @@ depends:
|
|||
.depends: $(DEPENDS)
|
||||
cat *.d > .depends
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
TAGS:
|
||||
etags *.h *.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -31,13 +31,13 @@ ZEROD_LIB = @buildlib@/libzeroD.a
|
|||
|
||||
DEPENDS = $(OBJS:.o=.d)
|
||||
|
||||
all: .depends $(ZEROD_LIB)
|
||||
all: $(ZEROD_LIB) .depends
|
||||
@(@INSTALL@ -d $(INCDIR))
|
||||
@(for lh in $(ZEROD_H) ; do \
|
||||
$(INSTALL_TSC) "$${lh}" $(INCDIR) ; \
|
||||
done)
|
||||
|
||||
%.d:
|
||||
%.d: Makefile %.o
|
||||
@CXX_DEPENDS@ @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d
|
||||
|
||||
.cpp.o:
|
||||
|
|
@ -72,6 +72,8 @@ depends:
|
|||
.depends: $(DEPENDS)
|
||||
cat *.d > .depends
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
TAGS:
|
||||
etags *.h *.cpp
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue