diff options
author | P. J. McDermott <pjm@nac.net> | 2012-07-28 08:09:29 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-07-28 08:09:29 (EDT) |
commit | 4d582943676236a552555c4dd44afc505a49b713 (patch) | |
tree | cb64ca48c083e6a04c60e4d2d0e757fb9d94f000 | |
parent | 8dd5758f70e7189619b3058b3a395ba5868b6cd3 (diff) |
Remove stamp-less non-binary targets.
-rwxr-xr-x | build | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -2,7 +2,6 @@ CFLAGS = -g -O2 -configure: configure.stamp configure.stamp: for target in $(PKG_TARGETS); do \ mkdir -p "build-$${target}"; \ @@ -30,8 +29,7 @@ configure.stamp: done touch $@ -build: build.stamp -build.stamp: configure +build.stamp: configure.stamp # Build BFD header files. for target in $(PKG_TARGETS); do \ cd "build-$${target}/bfd" && make headers && cd ../..; \ @@ -42,8 +40,7 @@ build.stamp: configure done touch $@ -install: install.stamp -install.stamp: build +install.stamp: build.stamp # Install everything. for target in $(PKG_TARGETS); do \ cd "build-$${target}" && \ @@ -96,14 +93,14 @@ install.stamp: build done touch $@ -binary-arch: install +binary-arch: install.stamp oh-strip oh-installfiles oh-installdocs binutils oh-gencontrol oh-buildopk -binary-indep: install +binary-indep: install.stamp oh-installfiles oh-installdocs binutils oh-gencontrol |