Changeset 2044 for trunk/src/libctests/glibc/Makefile
- Timestamp:
- Jun 17, 2005, 6:32:39 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libctests/glibc/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r2043 r2044 5 5 all: test-logged 6 6 7 # 8 # Basic setup. 9 # 10 OUTDIR = ./out 11 TS = $(shell date '+"%Y-%m-%d-%H-%M-%S"') 12 LOG = $(OUTDIR)/$(1)-$(TS).log 13 CC = gcc 14 CFLAGS = -O -D_GNU_SOURCE -std=gnu99 -DOBJPFX=\"$(OUTDIR)/\" 15 ifeq ($(shell uname -m),amd64) 16 CFLAGS+= -I sysdeps/x86_64 -I . 17 else 18 CFLAGS+= -I sysdeps/i386/i686 -I sysdeps/i386 -I . 19 endif 20 7 21 8 22 # … … 10 24 # 11 25 ifeq ($(TARGET),) 12 TARGET := glibc26 TARGET := bsd 13 27 endif 14 28 … … 17 31 EXCEPTIONS := 18 32 _TARGET_OK := ok 33 CFLAGS += \ 34 -DHAVE_STRNLEN \ 35 -DHAVE_STPNCPY \ 36 -DHAVE_STRCHRNUL \ 37 -DHAVE_RAWMEMCHR \ 38 -DHAVE_MEMRCHR \ 39 -DHAVE_STRSEP \ 40 -DHAVE_STRNDUP \ 41 -DHAVE_MEMPCPY \ 42 -DHAVE_NEWLOCALE 19 43 endif 20 44 … … 26 50 27 51 ifeq ($(TARGET),bsd) 28 SKIPPED := 52 SKIPPED := \ 53 string/test-mempcpy.c \ 54 string/test-stpncpy.c \ 55 string/tst-bswap.c \ 56 string/tst-strfry.c 29 57 EXCEPTIONS := 30 58 _TARGET_OK := ok 59 CFLAGS += -I sysdeps/unix/bsd -D__BSD__ 31 60 endif 32 61 … … 35 64 endif 36 65 37 38 #39 # Basic setup.40 #41 OUTDIR = ./out42 TS = $(shell date '+"%Y-%m-%d-%H-%M-%S"')43 LOG = $(OUTDIR)/$(1)-$(TS).log44 CC = gcc45 CFLAGS = -O -D_GNU_SOURCE -std=gnu99 -I sysdeps/i386/i686 -I sysdeps/i386 -I . -DOBJPFX=\"$(OUTDIR)/\"46 66 47 67 nothing: -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.