Geert Stappers
2010-Jul-02 18:38 UTC
[syslinux] [syslinux:master] lua: Modernize the Makefile
Op 20100702 om 11:21 schreef syslinux-bot for H. Peter Anvin:> > lua: Modernize the Makefile<bigsnip/>> -liblua.a: $(LIBLUA_OBJS) > +$(LIBLUA) : $(LIBLUA_OBJS) > + rm -f $@ > $(AR) cq $@ $^ > $(RANLIB) $@FWIW: Today I also found that missing `rm -f $@` Cheers Geert Stappers
H. Peter Anvin
2010-Jul-02 18:50 UTC
[syslinux] [syslinux:master] lua: Modernize the Makefile
On 07/02/2010 11:38 AM, Geert Stappers wrote:> Op 20100702 om 11:21 schreef syslinux-bot for H. Peter Anvin: >> >> lua: Modernize the Makefile > <bigsnip/> >> -liblua.a: $(LIBLUA_OBJS) >> +$(LIBLUA) : $(LIBLUA_OBJS) >> + rm -f $@ >> $(AR) cq $@ $^ >> $(RANLIB) $@ > > FWIW: Today I also found that missing `rm -f $@` >It's a common problem; a lot of people don't even know that "ar" was designed as a file archive, not as a library manager. -hpa