--- blamframe.cpp 2005-10-05 08:25:16.000000000 +0200 +++ blamframe.cpp~ 2006-03-26 15:23:17.000000000 +0200 @@ -36,10 +36,10 @@ solveSOP=1; /**** Icon *****/ - +/* wxIcon icon("wxwin.ico", wxBITMAP_TYPE_ICO); SetIcon(icon); - +*/ /**** Menu *****/ wxMenu *menuFile = new wxMenu; --- Makefile.old 2006-03-26 16:24:26.000000000 +0200 +++ Makefile 2006-03-26 16:30:03.000000000 +0200 @@ -2,9 +2,9 @@ AR = ar WC = wc -PROGRAM = kmm +PROGRAM = kmap -CFLAGS = `wx-config --cxxflags` -Wall -pipe +CFLAGS = `wx-config-2.6 --cxxflags` -Wall -pipe LFLAGS = -L/usr/local/lib/ -L/usr/lib/ CPPFLAGS = @@ -21,7 +21,7 @@ # Main Program $(PROGRAM): $(OBJECTS) $(DEPENDS) - $(CC) -o $(PROGRAM) $(OBJECTS) $(LFLAGS) `wx-config --libs --cxxflags` + $(CC) -o $(PROGRAM) $(OBJECTS) $(LFLAGS) `wx-config-2.6 --libs --cxxflags` %.o: %.cpp @@ -41,3 +41,7 @@ # Include the dependencies that we created -include $(DEPENDS) +prefix = /usr +install: $(PROGRAM) + install -d -m 755 $(prefix)/bin + install -m 0755 $(PROGRAM) $(prefix)/bin