Changeset 737 in Sophya
- Timestamp:
- Feb 22, 2000, 5:31:27 PM (26 years ago)
- Location:
- trunk/SophyaLib/Mgr
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Mgr/Makefile.h
r696 r737 157 157 # les *.h doivent etre sous $CFITSIODIR 158 158 # la librairie *.a sous $CFITSIODIR 159 ifdef CFITSIODIR 160 FITSIOREP := -I$(CFITSIODIR) 161 FITSIOLIB := -L$(CFITSIODIR)/$(MACHDIR) -lcfitsio 159 # ifdef CFITSIODIR 160 # FITSIOREP := -I$(CFITSIODIR) 161 # FITSIOLIB := -L$(CFITSIODIR)/$(MACHDIR) -lcfitsio 162 # endif 163 164 # Chemin pour les include et fichiers d'autres librairies 165 EXTINC := 166 EXTLIB := 167 EXTSLB := 168 169 ifdef EXTLIBDIR 170 EXTINC := $(EXTLIBDIR)/Include/ 171 EXTLIB := $(EXTLIBDIR)/$(MACHDIR)/Libs/ 172 EXTSLB := $(EXTLIBDIR)/$(MACHDIR)/ShLibs/ 162 173 endif 163 174 … … 167 178 #endif 168 179 169 CPPFLAGS := -I${INC} $(FITSIOREP) -D${MACHEROSD} $(MODULECPPFLAGS)180 CPPFLAGS := -I${INC} -I$(EXTINC) -D${MACHEROSD} $(MODULECPPFLAGS) 170 181 171 182 # Les options selon les divers compilateurs -
trunk/SophyaLib/Mgr/mkmf
r663 r737 1 1 #!/bin/csh 2 # $Id: mkmf,v 1. 6 1999-11-29 12:48:11ansari Exp $2 # $Id: mkmf,v 1.7 2000-02-22 16:31:26 ansari Exp $ 3 3 4 4 # Librairie cfitsio 5 if( ! $? CFITSIODIR ) then6 echo ' cfitsio library: CFITSIODIR variable need to be set'5 if( ! $?EXTLIBDIR ) then 6 echo 'EXTLIBDIR library: EXTLIBDIR variable need to be set' 7 7 endif 8 8 -
trunk/SophyaLib/Mgr/mkmflien
r554 r737 1 1 #!/bin/csh 2 # $Id: mkmflien,v 1. 3 1999-11-09 11:13:14ansari Exp $2 # $Id: mkmflien,v 1.4 2000-02-22 16:31:27 ansari Exp $ 3 3 4 4 ######################################################### … … 25 25 ### Les includes a mettre dans Include pour les Makefiles 26 26 ######################################################### 27 foreach f ( $src/Mgr/Makefile.h $src/Mgr/Makefile User.h )27 foreach f ( $src/Mgr/Makefile.h $src/Mgr/Makefile.slb $src/Mgr/MakefileUser.h ) 28 28 if( -e $f ) then 29 29 ln -sf $f $dst/ … … 34 34 #### Les includes de tnt a mettre dans Include/tnt 35 35 ################################################### 36 if( -d $dst/tnt ) then37 if( -d $src/tnt ) then38 foreach f ( $src/tnt/*.h )39 ln -sf $f $dst/tnt/40 end41 endif42 endif36 #if( -d $dst/tnt ) then 37 # if( -d $src/tnt ) then 38 # foreach f ( $src/tnt/*.h ) 39 # ln -sf $f $dst/tnt/ 40 # end 41 # endif 42 #endif 43 43 44 44 ###################################################
Note:
See TracChangeset
for help on using the changeset viewer.