-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1afa7cd
Showing
432 changed files
with
60,089 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/INSTALL/1.2/Mon Sep 1 23:03:04 2003// | ||
/Jamfile/1.2/Mon Dec 8 14:47:37 2003// | ||
/Jamrules/1.9/Tue Jun 8 13:16:06 2004// | ||
/LICENSE/1.1/Tue May 20 18:17:52 2003// | ||
/Makefile/1.8/Wed May 21 03:45:58 2003// | ||
/README/1.2/Thu Sep 23 18:59:39 2004// | ||
/VERSION/1.1/Tue May 20 18:18:07 2003// | ||
D/doc//// | ||
D/packages//// | ||
D/src//// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
spacecraft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
:pserver:[email protected]:/cvsroot/spacecraft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
OPEN-SESSAME Version 1.0 | ||
|
||
Please read the installation section of the manual | ||
(http://spacecraft.sourceforge.net/install.html) for instructions. | ||
|
||
Make sure to have QTDIR set to your local QT installation: | ||
# export QTDIR=/usr/share/qt/ | ||
|
||
-------- | ||
Andrew J. Turner (19 May 2003) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
############################################ | ||
# Top level Jamfile for OSESSAME | ||
# | ||
# $Author: simpliciter $ | ||
# $Revision: 1.2 $ | ||
# $Date: 2003/12/08 14:47:37 $ | ||
# | ||
############################################ | ||
|
||
# This SubDir defines the project root directory | ||
SubDir OPENSESSAME_ROOT ; | ||
|
||
# Only include the next level down in the tree | ||
SubInclude OPENSESSAME_ROOT src ; | ||
|
||
|
||
## Do not change the comments below - they will be added automatically by CVS | ||
############################################################################# | ||
# $Log: Jamfile,v $ | ||
# Revision 1.2 2003/12/08 14:47:37 simpliciter | ||
# All new Jamfiles! | ||
# | ||
# | ||
# | ||
############################################################################# | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
################################################## | ||
# Jamrules file for OPENSESSAME | ||
# | ||
# $Author: simpliciter $ | ||
# $Revision: 1.9 $ | ||
# $Date: 2004/06/08 13:16:06 $ | ||
# | ||
############################################ | ||
|
||
OPENSESSAME_LIBDIR = $(OPENSESSAME_ROOT)$(SLASH)lib ; | ||
OPENSESSAME_INCLUDEDIR = $(OPENSESSAME_ROOT)$(SLASH)include ; | ||
OPENSESSAME_BINDIR = $(OPENSESSAME_ROOT)$(SLASH)bin ; | ||
PFXLIB = libosessame_ ; | ||
|
||
OPENSESSAME_HDRS = $(OPENSESSAME_ROOT)$(SLASH)src $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)attitude $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)datahandling $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)dynamics $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)environment $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)orbit $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)rotation $(OPENSESSAME_ROOT)$(SLASH)src$(SLASH)matrix ; | ||
|
||
# Add OS dependendent libraries | ||
if $(MSVCNT) | ||
{ | ||
ECHO "Compiler is Microsoft Visual C++" ; | ||
CCFLAGS += /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FD /GZ /c ; | ||
C++FLAGS = $(CCFLAGS) ; | ||
NOARSCAN ?= true ; | ||
|
||
LINKFLAGS += /D "WIN32" ; | ||
|
||
#SubInclude OPENSESSAME_ROOT src MSWindows_Dependent_Dir ; | ||
} | ||
else if $(UNIX) | ||
{ | ||
CC = gcc ; | ||
C++ = g++ ; | ||
ECHO "Compiler is" $(C++) ; | ||
CCFLAGS += -Wno-deprecated ; | ||
C++FLAGS = $(CCFLAGS) ; | ||
} | ||
|
||
|
||
|
||
|
||
rule Document | ||
{ | ||
# Depends $(1) : $(DOXYFILE) ; | ||
Dox doc : $(DOXYFILE) ; | ||
} | ||
actions Dox | ||
{ | ||
doxygen $(2) | ||
} | ||
|
||
|
||
|
||
## Do not change the comments below - they will be added automatically by CVS | ||
############################################################################# | ||
# $Log: Jamrules,v $ | ||
# Revision 1.9 2004/06/08 13:16:06 simpliciter | ||
# Changed explicit dependency on gcc-3.3, as that's the default gcc on most systems now. | ||
# | ||
# Revision 1.8 2003/12/09 00:58:54 simpliciter | ||
# Removed explicit /utils dir call. | ||
# | ||
# Revision 1.7 2003/12/08 16:49:18 simpliciter | ||
# Final fix for typhon compatibility. | ||
# | ||
# Revision 1.6 2003/12/08 15:00:42 simpliciter | ||
# Correct gcc version for typhon. | ||
# | ||
# Revision 1.5 2003/12/08 14:47:37 simpliciter | ||
# All new Jamfiles! | ||
# | ||
# | ||
# | ||
############################################################################# | ||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.