removed references to Proce55ing (old naming), fixed up .cvsignore,

Makefile now produces processing.exe
This commit is contained in:
benfry
2003-07-23 22:42:05 +00:00
parent ac1f8acfd1
commit d56fa98fe7
3 changed files with 10 additions and 20 deletions
+2 -12
View File
@@ -1,13 +1,3 @@
Debug
Release
launcher.dsw
launcher.ncb
launcher.opt
launcher.plg
launcher.exe
launcher.ilk
launcher.aps
Proce55ing.ilk
Proce55ing.exe
*.o
processing.exe
+2 -2
View File
@@ -1,7 +1,7 @@
CXXFLAGS = -mwindows -mno-cygwin -O2 -Wall
OBJS = launcher.o launcher-rc.o
launcher.exe: $(OBJS)
processing.exe: $(OBJS)
$(LINK.cc) $(CXXFLAGS) -o $@ $(OBJS)
$(OBJS): Makefile
@@ -10,4 +10,4 @@ launcher-rc.o: launcher.rc
windres -i $< -o $@
clean:
$(RM) $(OBJS) launcher.exe
$(RM) $(OBJS) processing.exe
@@ -72,7 +72,7 @@ WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
if (!SetEnvironmentVariable("CLASSPATH", cp)) {
MessageBox(NULL, "Could not set CLASSPATH environment variable",
"Proce55ing Error", MB_OK);
"Processing Error", MB_OK);
return 0;
}
@@ -108,7 +108,7 @@ WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
if (!ShellExecuteEx(&ShExecInfo)) {
MessageBox(NULL, "Error calling ShellExecuteEx()",
"Proce55ing Error", MB_OK);
"Processing Error", MB_OK);
return 0;
}
@@ -120,19 +120,19 @@ WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
case ERROR_PATH_NOT_FOUND:
MessageBox(NULL, "A required file could not be found. \n"
"You may need to install a Java runtime\n"
"or re-install Proce55ing.",
"Proce55ing Error", MB_OK);
"or re-install Processing.",
"Processing Error", MB_OK);
break;
case 0:
case SE_ERR_OOM:
MessageBox(NULL, "Not enough memory or resources to run at"
" this time.", "Proce55ing Error", MB_OK);
" this time.", "Processing Error", MB_OK);
break;
default:
MessageBox(NULL, "There is a problem with your installation.\n"
"If the problem persists, re-install the program.",
"Proce55ing Error", MB_OK);
"Processing Error", MB_OK);
break;
}
}