--- Makefile.xx 2005-02-06 20:51:51.407074108 +0100 +++ Makefile 2005-02-06 20:52:14.797707000 +0100 @@ -47,16 +47,17 @@ ##################################################################### # COMPILATION RULES ##################################################################### -CFLAGS=-g -DVERSION='"$(VERSION)"' -Wall -Werror -I. +OPTFLAGS=-O2 +CFLAGS=-g $(OPTFLAGS) -DVERSION='"$(VERSION)"' -Wall -Werror -I. console.o : console/console.cxx - $(CXX) $(CFLAGS) -O2 -o $@ -c $< + $(CXX) $(CFLAGS) -o $@ -c $< gnome.o : gnome/gnome.cxx - $(CXX) $(CFLAGS) `pkg-config --cflags libpanelapplet-2.0` -O2 -o $@ -c $< + $(CXX) $(CFLAGS) `pkg-config --cflags libpanelapplet-2.0` -o $@ -c $< %.o : %.cxx - $(CXX) $(CFLAGS) -O2 -o $@ -c $< + $(CXX) $(CFLAGS) -o $@ -c $< #####################################################################