Changeset 4833
- Timestamp:
- Aug 19, 2005, 5:14:08 PM (21 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 16 edited
-
cmd.astro/Makefile (modified) (1 diff)
-
cmd.basic/Makefile (modified) (1 diff)
-
cmd.data/Makefile (modified) (1 diff)
-
dimm/Makefile (modified) (1 diff)
-
dvo/Makefile (modified) (1 diff)
-
dvo/gstar.c (modified) (1 diff)
-
dvo/mextract.c (modified) (1 diff)
-
dvo/pmeasure.c (modified) (1 diff)
-
dvo2/Makefile (modified) (1 diff)
-
lib.data/Makefile (modified) (1 diff)
-
lib.shell/ConfigInit.c (modified) (1 diff)
-
lib.shell/Makefile (modified) (1 diff)
-
mana/Makefile (modified) (1 diff)
-
pantasks/Makefile (modified) (1 diff)
-
pclient/Makefile (modified) (1 diff)
-
pcontrol/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.astro/Makefile
r4747 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 CFLAGS = $(INCS) 19 19 CCFLAGS = $(LIBS) -
trunk/Ohana/src/opihi/cmd.basic/Makefile
r4748 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 CFLAGS = $(INCS) 19 19 CCFLAGS = $(LIBS) -
trunk/Ohana/src/opihi/cmd.data/Makefile
r4747 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 CFLAGS = $(INCS) 19 19 CCFLAGS = $(LIBS) -
trunk/Ohana/src/opihi/dimm/Makefile
r4748 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata -lsbig 19 19 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/dvo/Makefile
r4748 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata 19 19 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/dvo/gstar.c
r4800 r4833 17 17 PhotCode *code; 18 18 19 VarConfig ("CATDIR", "%s", catdir); 19 if (VarConfig ("CATDIR", "%s", catdir) == NULL) return (FALSE); 20 if (VarConfig ("CATMODE", "%s", catalog.catmode) == NULL) 21 strcpy (catalog.catmode, "RAW"); 22 20 23 if (!InitPhotcodes ()) return (FALSE); 21 24 Nsec = GetPhotcodeNsecfilt (); -
trunk/Ohana/src/opihi/dvo/mextract.c
r4689 r4833 29 29 /* find CATDIR in config system */ 30 30 if (VarConfig ("CATDIR", "%s", catdir) == NULL) goto escape; 31 if (VarConfig ("CATMODE", "%s", catalog.catmode) == NULL) 32 strcpy (catalog.catmode, "RAW"); 31 33 32 34 /* interpret command-line options */ -
trunk/Ohana/src/opihi/dvo/pmeasure.c
r4800 r4833 19 19 20 20 Ngraph = -1; 21 if (!InitPhotcodes ()) return (FALSE); 21 22 if (!GetGraph (&graphmode, NULL, &Ngraph)) return (FALSE); 22 23 if (VarConfig ("CATDIR", "%s", catdir) == NULL) return (FALSE); 23 if (!InitPhotcodes ()) return (FALSE); 24 if (VarConfig ("CATMODE", "%s", catalog.catmode) == NULL) 25 strcpy (catalog.catmode, "RAW"); 24 26 25 27 regions = (RegionFile *) NULL; -
trunk/Ohana/src/opihi/dvo2/Makefile
r3525 r4833 17 17 INCS = -I$(INC) -I$(LINC) -I$(XINC) 18 18 LFLAGS = -L$(LLIB) -L$(LIB) 19 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm19 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 20 20 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata 21 21 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/lib.data/Makefile
r4806 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 CFLAGS = $(INCS) 19 19 CCFLAGS = $(LIBS) -
trunk/Ohana/src/opihi/lib.shell/ConfigInit.c
r2598 r4833 26 26 27 27 answer = get_variable (keyword); 28 if (answer != (char *) NULL) { 29 30 if (!strcmp (mode, "%s")) { 31 strcpy ((char *) ptr, answer); 32 } else { 33 if (!strcmp (mode, "%d")) *(int *) ptr = atoi (answer); 34 if (!strcmp (mode, "%u")) *(unsigned *) ptr = atoi (answer); 35 if (!strcmp (mode, "%ld")) *(long *) ptr = atoi (answer); 36 if (!strcmp (mode, "%hd")) *(short *) ptr = atoi (answer); 37 if (!strcmp (mode, "%f")) *(float *) ptr = atof (answer); 38 if (!strcmp (mode, "%lf")) *(double *) ptr = atof (answer); 39 } 40 free (answer); 41 return (ptr); 28 if (answer == (char *) NULL) { 29 answer = ScanConfig (GlobalConfig, keyword, mode, 0, ptr); 30 return (answer); 42 31 } 43 32 44 answer = ScanConfig (GlobalConfig, keyword, mode, 0, ptr); 45 return (answer); 33 if (!strcmp (mode, "%s")) strcpy ((char *) ptr, answer); 34 if (!strcmp (mode, "%d")) *(int *) ptr = atoi (answer); 35 if (!strcmp (mode, "%u")) *(unsigned *) ptr = atoi (answer); 36 if (!strcmp (mode, "%ld")) *(long *) ptr = atoi (answer); 37 if (!strcmp (mode, "%hd")) *(short *) ptr = atoi (answer); 38 if (!strcmp (mode, "%f")) *(float *) ptr = atof (answer); 39 if (!strcmp (mode, "%lf")) *(double *) ptr = atof (answer); 40 41 free (answer); 42 return (ptr); 46 43 } 47 48 -
trunk/Ohana/src/opihi/lib.shell/Makefile
r4751 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 CFLAGS = $(INCS) 19 19 CCFLAGS = $(LIBS) -
trunk/Ohana/src/opihi/mana/Makefile
r4748 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata 19 19 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/pantasks/Makefile
r4763 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata 19 19 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/pclient/Makefile
r4748 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -lshell -ldata 19 19 LIBS = $(LIBS2) $(LIBS1) -
trunk/Ohana/src/opihi/pcontrol/Makefile
r4767 r4833 15 15 INCS = -I$(INC) -I$(LINC) -I$(XINC) 16 16 LFLAGS = -L$(LLIB) -L$(LIB) 17 LIBS1 = -l FITS -lsocket -lnsl -lreadline -ltermcap -lohana-lm17 LIBS1 = -lsocket -lnsl -lreadline -ltermcap -lohana -lFITS -lm 18 18 LIBS2 = -lbasiccmd -lshell -ldata 19 19 LIBS = $(LIBS2) $(LIBS1)
Note:
See TracChangeset
for help on using the changeset viewer.
