Changeset 1844 in Sophya
- Timestamp:
- Dec 30, 2001, 11:09:35 PM (24 years ago)
- Location:
- trunk/SophyaPI/PIGcont
- Files:
-
- 10 added
- 10 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIGcont/Makefile
r1838 r1844 4 4 5 5 all: $(LIB)libPIGcont.a 6 $(LIB)libPIGcont.a : $(OBJ) contour.o $(OBJ)myalloc.o $(OBJ)myaxis.o $(OBJ)picntools.o $(OBJ)pigncont.o $(OBJ)set.o6 $(LIB)libPIGcont.a : $(OBJ)gp_alloc.o $(OBJ)gp_axis.o $(OBJ)gp_contour.o $(OBJ)gpc_set.o $(OBJ)picntools.o $(OBJ)pigncont.o 7 7 $(AR) $(ARFLAGS) $@ $($(ARARGS)) 8 8 ifeq ($(CXX),cxx) … … 11 11 12 12 clean: 13 rm -f $(OBJ) contour.o $(OBJ)myalloc.o $(OBJ)myaxis.o $(OBJ)picntools.o $(OBJ)pigncont.o $(OBJ)set.o13 rm -f $(OBJ)gp_alloc.o $(OBJ)gp_axis.o $(OBJ)gp_contour.o $(OBJ)gpc_set.o $(OBJ)picntools.o $(OBJ)pigncont.o 14 14 ifeq ($(CXX),cxx) 15 15 cd $(REPM); rm -f *.o 16 16 endif 17 17 18 $(OBJ)contour.o: contour.c contour.h gp_types.h mymisc.h dynarray.h \ 19 graph3d.h gp_alloc.h myaxis.h 20 $(OBJ)myalloc.o: myalloc.c gp_alloc.h graph3d.h gp_types.h mymisc.h 21 $(OBJ)myaxis.o: myaxis.c myaxis.h mymisc.h 22 $(OBJ)picntools.o: picntools.cc picntools.h \ 23 $(INC)pisysdep.h \ 24 $(INC)machdefs.h \ 18 $(OBJ)gp_alloc.o: gp_alloc.c gp_alloc.h gp_graph3d.h gp_types.h gpc_misc.h 19 $(OBJ)gp_axis.o: gp_axis.c gp_axis.h gpc_misc.h 20 $(OBJ)gp_contour.o: gp_contour.c gp_contour.h gp_types.h gpc_misc.h \ 21 gp_dynarray.h gp_graph3d.h gp_alloc.h gp_axis.h 22 $(OBJ)gpc_set.o: gpc_set.c gpc_set.h gp_contour.h gp_types.h gpc_misc.h \ 23 gp_dynarray.h gp_graph3d.h 24 $(OBJ)picntools.o: picntools.cc $(INC)machdefs.h \ 25 picntools.h $(INC)pisysdep.h \ 25 26 $(INC)pistdwdgx.h \ 26 27 $(INC)pistdwdggen.h \ … … 54 55 $(INC)pievthandler.h \ 55 56 $(INC)psfile.h \ 56 $(INC)pigraphps.h pigncont.h \ 57 $(INC)pigraphps.h \ 58 $(INC)picmapview.h pigncont.h \ 57 59 $(INC)pistdimgapp.h \ 58 60 $(INC)pifilechox.h \ … … 64 66 $(INC)pipixmapx.h \ 65 67 $(INC)pipixmapgen.h \ 66 $(INC)picmapview.h \67 68 $(INC)pi3ddrw.h \ 68 69 $(INC)pigraph3d.h \ … … 86 87 $(INC)piscdrawwdg.h \ 87 88 $(INC)ntuple.h \ 88 $(INC)ntupintf.h contour.h gp_types.h \89 dynarray.h mymisc.h graph3d.h gp_alloc.hset.h89 $(INC)ntupintf.h gp_contour.h gp_types.h \ 90 gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h gpc_set.h 90 91 $(OBJ)pigncont.o: pigncont.cc $(INC)machdefs.h \ 91 $(INC)ctimer.h \ 92 $(INC)piacmd.h \ 93 $(INC)dlftypes.h \ 94 $(INC)pdlmgr.h \ 95 $(INC)nobjmgr.h \ 92 $(INC)histos.h \ 93 $(INC)objfio.h \ 96 94 $(INC)anydataobj.h \ 97 95 $(INC)ppersist.h \ 98 96 $(INC)pexceptions.h \ 99 97 $(INC)gnumd5.h \ 98 $(INC)peida.h \ 99 $(INC)utils.h \ 100 $(INC)perrors.h \ 101 $(INC)fmath.h \ 102 $(INC)tvector.h \ 103 $(INC)tmatrix.h \ 104 $(INC)tarray.h \ 105 $(INC)basarr.h \ 106 $(INC)mutyv.h \ 100 107 $(INC)dvlist.h \ 101 $(INC)objfio.h \ 102 $(INC)mutyv.h \ 103 $(INC)pistdimgapp.h \ 108 $(INC)ndatablock.h \ 109 $(INC)utilarr.h \ 110 $(INC)ntuple.h \ 111 $(INC)ntupintf.h \ 112 $(INC)nbtri.h picntools.h \ 104 113 $(INC)pisysdep.h \ 114 $(INC)pistdwdgx.h \ 115 $(INC)pistdwdggen.h \ 116 $(INC)piwdgx.h \ 117 $(INC)piwdggen.h \ 118 $(INC)pimsghandler.h \ 119 $(INC)picolist.h \ 120 $(INC)pioptmenux.h \ 121 $(INC)pioptmenugen.h \ 122 $(INC)pimenux.h \ 123 $(INC)pimenugen.h \ 124 $(INC)piwindowx.h \ 125 $(INC)piwindowgen.h \ 126 $(INC)picontainerx.h \ 127 $(INC)picontainergen.h \ 105 128 $(INC)piapplx.h \ 106 129 $(INC)piapplgen.h \ 107 $(INC)pimsghandler.h \108 $(INC)picontainerx.h \109 $(INC)picontainergen.h \110 $(INC)piwdgx.h \111 $(INC)piwdggen.h \112 $(INC)picolist.h \113 130 $(INC)pimenubarx.h \ 114 131 $(INC)pimenubargen.h \ 115 $(INC)pimenux.h \116 $(INC)pimenugen.h \117 132 $(INC)picons.h \ 118 $(INC)pistdwdgx.h \119 $(INC)pistdwdggen.h \120 133 $(INC)pibwdgx.h \ 121 134 $(INC)pibwdggen.h \ … … 131 144 $(INC)psfile.h \ 132 145 $(INC)pigraphps.h \ 133 $(INC)piwindowx.h \ 134 $(INC)piwindowgen.h \ 135 $(INC)pioptmenux.h \ 136 $(INC)pioptmenugen.h \ 146 $(INC)picmapview.h pigncont.h \ 147 $(INC)pistdimgapp.h \ 137 148 $(INC)pifilechox.h \ 138 149 $(INC)pifilechogen.h \ … … 143 154 $(INC)pipixmapx.h \ 144 155 $(INC)pipixmapgen.h \ 145 $(INC)picmapview.h \146 156 $(INC)pi3ddrw.h \ 147 157 $(INC)pigraph3d.h \ 158 $(INC)nobjmgr.h \ 159 $(INC)dlftypes.h \ 160 $(INC)piacmd.h \ 161 $(INC)pdlmgr.h \ 148 162 $(INC)pisiadw.h \ 149 163 $(INC)pilistx.h \ … … 152 166 $(INC)piperiodx.h \ 153 167 $(INC)periodic.h \ 154 $(INC)nomgadapter.h \ 155 $(INC)ntupintf.h \ 156 $(INC)generalfit.h \ 157 $(INC)tvector.h \ 158 $(INC)tmatrix.h \ 159 $(INC)tarray.h \ 160 $(INC)basarr.h \ 161 $(INC)ndatablock.h \ 162 $(INC)utilarr.h \ 163 $(INC)generaldata.h \ 164 $(INC)poly.h \ 165 $(INC)peida.h \ 166 $(INC)utils.h \ 167 $(INC)perrors.h \ 168 $(INC)fmath.h \ 169 $(INC)histos.h \ 170 $(INC)histos2.h \ 171 $(INC)hisprof.h \ 172 $(INC)ntuple.h \ 173 $(INC)servnobjm.h picntools.h pigncont.h \ 174 $(INC)piscdrawwdg.h contour.h gp_types.h \ 175 dynarray.h mymisc.h graph3d.h gp_alloc.h set.h 176 $(OBJ)set.o: set.c set.h contour.h gp_types.h mymisc.h dynarray.h graph3d.h 168 $(INC)piscdrawwdg.h gp_contour.h gp_types.h \ 169 gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h gpc_set.h -
trunk/SophyaPI/PIGcont/gp_alloc.h
r1838 r1844 37 37 #include <stdio.h> 38 38 #include <stdlib.h> 39 #include "g raph3d.h"39 #include "gp_graph3d.h" 40 40 /**** 41 41 #ifdef HAVE_CONFIG_H -
trunk/SophyaPI/PIGcont/gp_types.h
r1829 r1844 1 1 /* 2 * $Id: gp_types.h,v 1. 1.1.1 2001-12-19 18:01:18 perderosExp $2 * $Id: gp_types.h,v 1.2 2001-12-30 22:09:34 ansari Exp $ 3 3 */ 4 4 … … 41 41 #include "syscfg.h" 42 42 ***/ 43 #include " mymisc.h"43 #include "gpc_misc.h" 44 44 45 45 #define MAX_ID_LEN 50 /* max length of an identifier */ -
trunk/SophyaPI/PIGcont/objlist.list
r1833 r1844 1 contour.o 2 myalloc.o 3 myaxis.o 1 gp_alloc.o 2 gp_axis.o 3 gp_contour.o 4 gpc_set.o 4 5 picntools.o 5 6 pigncont.o 6 set.o -
trunk/SophyaPI/PIGcont/pigncont.h
r1838 r1844 13 13 #include "ntuple.h" 14 14 extern "C" { 15 #include " contour.h"15 #include "gp_contour.h" 16 16 #include "gp_alloc.h" 17 #include " set.h"17 #include "gpc_set.h" 18 18 } 19 19
Note:
See TracChangeset
for help on using the changeset viewer.