Well call me a frog.  It worked.  What the heck is going on?  I gotta
change all my makefiles?


> > CC = gcc -g -O2 -Wall # or to taste
> > CFLAGS = `pkg-config --cflags gtk+-2.0`
> > LIBS = `pkg-config --libs gtk+-2.0`
> >
> > foo: foo.c
> >     $(CC) $(CFLAGS) -o @$ $< $(LIBS)
> 
> Oops, that should be:
> 
>        $(CC) $(CFLAGS) -o $@ $< $(LIBS)
> 
> '$' and '@' were transposed for the target.
> 
> Allin Cottrell
> 
> 


_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to