From 96f7c7ca58af7d5177882839dd95f8182650643e Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 19 Oct 2004 23:14:13 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4356 --- clientgui/Makefile.old | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 clientgui/Makefile.old diff --git a/clientgui/Makefile.old b/clientgui/Makefile.old new file mode 100644 index 0000000000..fd57cebaf6 --- /dev/null +++ b/clientgui/Makefile.old @@ -0,0 +1,39 @@ +CXX = $(shell wx-config --cxx) + +CFLAGS = -g -I ../lib + +PROGRAM = boinc_gui + +all: $(PROGRAM) + +OBJS = \ + BOINCBaseView.o \ + BOINCGUIApp.o \ + BOINCListCtrl.o \ + BOINCTaskCtrl.o \ + DlgAbout.o \ + DlgAttachProject.o \ + DlgConnection.o \ + DlgOptions.o \ + MainDocument.o \ + MainFrame.o \ + stdwx.o \ + ValidateAccountKey.o \ + ValidateURL.o \ + ViewMessages.o \ + ViewProjects.o \ + ViewResources.o \ + ViewTransfers.o \ + ViewWork.o \ + ../lib/gui_rpc_client.o \ + ../lib/parse.o \ + ../lib/mfile.o \ + ../lib/miofile.o \ + ../lib/filesys.o \ + ../lib/util.o + +boinc_gui: $(OBJS) + $(CXX) -o $(PROGRAM) $(OBJS) `wx-config --libs` + +.cpp.o: + $(CXX) -c $(CFLAGS) `wx-config --cxxflags` $<