Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix build on FreeBSD.
Browse files Browse the repository at this point in the history
On FreeBSD, specifying an explicit dependency overrides any pattern
dependencies that might be applicable to a particular target.
The result is that no rules for pattern dependencies are considered.

A solution is to include all dependencies, including the pattern
dependencies, into the explicit dependency specification.
  • Loading branch information
Rich Meyers committed Jun 6, 2011
1 parent 9e75547 commit 9a72f47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -73,8 +73,8 @@ PROGRAMS = $(USERPROGRAMS) $(PROGRAMPROGRAMS)
$(CC) -c $(CFLAGS) $<
printf " OK\n"

rpg-sh-setup: config.sh munge.rb
rpg: config.sh munge.rb
rpg-sh-setup: config.sh munge.rb rpg-sh-setup.sh
rpg: config.sh munge.rb rpg.sh

rpg-solve: rpg-solve.o strnatcmp.o
printf "%13s %-30s" "[LINK]" "$@"
Expand Down

0 comments on commit 9a72f47

Please sign in to comment.