diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-21 17:18:02 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-21 17:18:02 -0700 |
commit | 3df42588472b07c54b9de11a7e118d6f3f4f6c41 (patch) | |
tree | d3a925a2667a4dcc2b05f13d543b61e58a6273d9 /utils | |
parent | f3006fdf98b5b5bf614d06075b79cea7ff7f3793 (diff) | |
download | syslinux-3df42588472b07c54b9de11a7e118d6f3f4f6c41.tar.gz |
utils/Makefile: fix build rules
Fix isohybrid build rules.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile index 5930b991..43552d88 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -46,8 +46,8 @@ isohybrid.pl: isohybrid.in $(ISOHDPFX) bin2hex.pl isohdpfx.c: $(ISOHDPFX) isohdpfxarray.pl $(PERL) isohdpfxarray.pl $(ISOHDPFX) > $@ -isohybrid: isohybrid.c isohdpfx.c isohybrid.h - $(CC) $(UMAKEDEPS) $(CFLGAS) -o $@ isohybrid.c isohdpfx.c +isohybrid: isohybrid.o isohdpfx.o + $(CC) $(LDFLAGS) -o $@ $^ gethostip: gethostip.o $(CC) $(LDFLAGS) -o $@ $^ |