> so I needed the following patch to compile it over here on my (lunar-)linux > box. > > --- makefile 2010-01-02 18:56:40.000000000 +0100 > +++ makefile.patched 2010-01-02 18:58:08.000000000 +0100 > @@ -13 +13 @@ > - $(CC) $(LDFLAGS) $(OBJS) -o $(PROG) > + $(CC) $(OBJS) -o $(PROG) $(LDFLAGS) > > > > v4hn
Will it work with this? $(CC) $(LDFLAGS) -o $(PROG) $(OBJS) Or with this: $(CC) -o $(PROG) $(LDFLAGS) $(OBJS)