9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

Makefile (525B)


      1 .POSIX:
      2 PROJECTDIR =../../..
      3 include $(PROJECTDIR)/scripts/rules.mk
      4 include ../rules.mk
      5 
      6 OBJS = memchr.o\
      7        memrchr.o \
      8        memcmp.o\
      9        memcpy.o\
     10        memmove.o\
     11        memset.o\
     12        strcat.o\
     13        strchr.o\
     14        strcmp.o\
     15        strcoll.o\
     16        strcpy.o\
     17        strcspn.o\
     18        strerror.o\
     19        strlen.o\
     20        strncat.o\
     21        strncmp.o\
     22        strncpy.o\
     23        strnlen.o\
     24        strpbrk.o\
     25        strrchr.o\
     26        strspn.o\
     27        strstr.o\
     28        strtok.o\
     29        strxfrm.o\
     30 
     31 all: $(OBJS)