Index: native/target/Makefile.am =================================================================== RCS file: /cvsroot/classpath/classpath/native/target/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- native/target/Makefile.am 16 Jan 2006 13:47:13 -0000 1.2 +++ native/target/Makefile.am 16 Jan 2006 15:50:11 -0000 @@ -1,5 +1,27 @@ ## Input file for automake to generate the Makefile.in used by configure -SUBDIRS = Linux generic embOS MinGW posix RTEMS SunOS +TARGET = Linux +# FIXME: How do I set these variables in configure? +#if TARGET_LINUX +# TARGET = Linux +#endif +#if TARGET_SUNOS +# TARGET = SunOS +#endif + +#if TARGET_RTEMS +# TARGET = RTEMS +#endif + +#if TARGET_MINGW +# TARGET = MinGW +#endif + +#if TARGET_EMBOS +# TARGET = embOS +#endif + +SUBDIRS = $(TARGET) generic +DIST_SUBDIRS = Linux SunOS RTEMS MinGW embOS posix generic EXTRA_DIST = readme.txt Index: native/target/posix/Makefile.am =================================================================== RCS file: /cvsroot/classpath/classpath/native/target/posix/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- native/target/posix/Makefile.am 16 Jan 2006 13:47:13 -0000 1.2 +++ native/target/posix/Makefile.am 16 Jan 2006 15:50:11 -0000 @@ -1,17 +1,17 @@ ## Input file for automake to generate the Makefile.in used by configure EXTRA_DIST = \ -target_native.h \ -target_native.c \ -target_native_file.h \ -target_native_file.c \ -target_native_io.h \ -target_native_io.c \ -target_native_math.h \ -target_native_math.c \ -target_native_memory.h \ -target_native_memory.c \ -target_native_misc.h \ -target_native_misc.c \ -target_native_network.h \ -target_native_network.c +target_posix.h \ +target_posix.c \ +target_posix_file.h \ +target_posix_file.c \ +target_posix_io.h \ +target_posix_io.c \ +target_posix_math.h \ +target_posix_math.c \ +target_posix_memory.h \ +target_posix_memory.c \ +target_posix_misc.h \ +target_posix_misc.c \ +target_posix_network.h \ +target_posix_network.c