]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
*** empty log message ***
authorhades <hades>
Thu, 31 Aug 2000 16:51:36 +0000 (16:51 +0000)
committerhades <hades>
Thu, 31 Aug 2000 16:51:36 +0000 (16:51 +0000)
allParam/Makefile
allParam/file/fileParam.c

index 7e8ae4dea4f3f0406c24cf3d151a010ea044d040..56ccd5c3ec5fc05d799ef7afd581504533920ce5 100644 (file)
@@ -34,8 +34,11 @@ $(patsubst %Param,install_%,$(PARAMLIBES)) :
        install -m 664 $(patsubst install_%,%,$@)/param.h \
        $(INCDIR)/$(patsubst install_%,%,$@)
 
-test :
-       cd test ; $(MAKE) $@
+test_compile :
+       cd test ; $(MAKE)
+
+test_run :
+       cd test ; $(MAKE) test
 
 clean :
        cd ca ; $(MAKE) $@
index 114e5dc0d8ddefe03a1ae7cceee6ccb170f077a2..295100a2879dd90591a1dec6fd74b6016226cd2e 100644 (file)
@@ -22,7 +22,6 @@ int conParam(Param *my)
        FILE *f;
        char buf[BUFFERSIZE];
 
-       printf("Being in contstructor of Param.\n");
        my->strerror = NULL;
 
        fileName = getenv("DAQSLOW_PARAM_FILE");
@@ -53,7 +52,6 @@ int conParam(Param *my)
                my->nVals = i;
                fclose(f);
        }
-       printf("Reached end of contstructor of Param.\n");
        return retVal;
 }