integrity test of openac and scepclient code files

This commit is contained in:
Andreas Steffen
2009-08-17 14:25:18 +02:00
parent 430dd08a2b
commit bde541acf8
4 changed files with 27 additions and 0 deletions
+5
View File
@@ -23,5 +23,10 @@ if USE_PLUTO
libs += $(top_builddir)/src/pluto/.libs/pluto
endif
if USE_TOOLS
libs += $(top_builddir)/src/openac/.libs/openac
libs += $(top_builddir)/src/scepclient/.libs/scepclient
endif
checksum.c : checksum_builder $(libs)
./checksum_builder $(libs) > checksum.c
+8
View File
@@ -77,6 +77,14 @@ int main(int argc, char* argv[])
{
name = strdup("pluto\",");
}
else if (strstr(path, "openac"))
{
name = strdup("openac\",");
}
else if (strstr(path, "scepclient"))
{
name = strdup("scepclient\",");
}
else
{
fprintf(stderr, "don't know how to handle '%s', ignored", path);