Changeset 203
- Timestamp:
- 05/18/06 07:24:04 (4 years ago)
- Files:
-
- trunk/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile
r202 r203 28 28 PATCHFILES2 := $(shell ls platform/example/functions/stdlib/*.c) 29 29 30 CFLAGS := -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -Wconversion -Wstrict-prototypes 30 CFLAGS := -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -Wconversion -Wstrict-prototypes -fno-builtin 31 31 32 .PHONY: all clean dist test s testdrivers regtests regtestdrivers todos fixmes find links unlink help32 .PHONY: all clean dist test tests testdrivers regtests regtestdrivers todos fixmes find links unlink help 33 33 34 34 all: pdclib.a … … 36 36 pdclib.a: $(OBJFILES) 37 37 @ar r pdclib.a $? 38 39 test: $(FILE) 40 $(FILE) 38 41 39 42 tests: testdrivers … … 84 87 @echo "clean - remove all object files, dependency files and test drivers" 85 88 @echo "dist - build pdclib.tgz (source tarball)" 89 @echo "test - test a single testdriver (Usage: FILE=\"test.[rt]\" make test)" 86 90 @echo "tests - build and run test drivers (link pdclib.a)" 87 91 @echo " testdrivers - build but do not run test drivers"
