1SubDir HAIKU_TOP src tests misc exception-test ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5SharedLibrary libexceptiontest.so
6	: exceptions.cpp
7	: $(TARGET_LIBSUPC++)
8;
9
10SimpleTest exception-test
11	: exception-test.cpp
12	: libexceptiontest.so $(TARGET_LIBSTDC++)
13;
14