Created bugs in wait and timer code
[reactos.git] / reactos / lib / crtdll / makefile
1 all: crtdll.a
2
3 STRING_OBJECTS = string/memchr.o string/memcmp.o string/strcat.o \
4 string/strchr.o string/strcmp.o string/strcoll.o \
5 string/strcpy.o string/strcspn.o string/memcpy.o \
6 string/strlen.o string/strncat.o string/strncmp.o \
7 string/strncpy.o string/strpbrk.o string/strrchr.o \
8 string/strspn.o string/strstr.o string/strtok.o \
9 string/strxfrm.o string/memmove.o string/memset.o \
10 string/strdup.o
11
12
13 STDIO_OBJECTS = stdio/vsprintf.o
14
15 STDLIB_OBJECTS = stdlib/malloc.o
16
17 OBJECTS = $(STRING_OBJECTS) $(STDIO_OBJECTS) $(STDLIB_OBJECTS)
18
19 crtdll.a: $(OBJECTS)
20 $(AR) rcs crtdll.a $(OBJECTS)
21
22 dummy:
23
24 include ../../rules.mak