Changeset 309
- Timestamp:
- 08/22/09 07:30:00 (1 year ago)
- Files:
-
- branches/stdio_rewrite/Makefile (modified) (3 diffs)
- branches/stdio_rewrite/functions/stdio (modified) (1 prop)
- branches/stdio_rewrite/includes/stdio.h (modified) (1 diff)
- branches/stdio_rewrite/internals/_PDCLIB_test.h (modified) (2 diffs)
- branches/stdio_rewrite/platform/example/functions/stdio (added)
- branches/stdio_rewrite/platform/example/functions/stdio/remove.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stdio_rewrite/Makefile
r302 r309 30 30 # All files in platform/$(PLATFORM)/functions/stdlib (for development only) 31 31 PATCHFILES2 := $(shell ls platform/$(PLATFORM)/functions/stdlib/*.c) 32 # All files in platform/$(PLATFORM)/functions/stdio (for development only) 33 PATCHFILES3 := $(shell ls platform/$(PLATFORM)/functions/stdio/*.c) 32 34 33 35 WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -fno-builtin … … 93 95 @cd functions/_PDCLIB && for file in $(PATCHFILES1); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done 94 96 @cd functions/stdlib && for file in $(PATCHFILES2); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done 97 @cd functions/stdio && for file in $(PATCHFILES3); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done 95 98 96 99 unlink: … … 100 103 @cd functions/_PDCLIB && for file in $(PATCHFILES1); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done 101 104 @cd functions/stdlib && for file in $(PATCHFILES2); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done 105 @cd functions/stdio && for file in $(PATCHFILES3); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done 102 106 103 107 help: branches/stdio_rewrite/functions/stdio
- Property svn:ignore changed from
*.d
*.t
*.r
system.c
getenv.c
to
*.d
*.t
*.r
remove.c
- Property svn:ignore changed from
branches/stdio_rewrite/includes/stdio.h
r301 r309 65 65 int fgetc( FILE * stream ); 66 66 67 int remove( const char * pathname ); 68 67 69 #endif 68 70 branches/stdio_rewrite/internals/_PDCLIB_test.h
r303 r309 15 15 char const abcde[] = "abcde"; 16 16 char const abcdx[] = "abcdx"; 17 char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; 17 18 18 19 int NO_TESTDRIVER = 0; … … 30 31 31 32 #define TEST_RESULTS rc 33
