scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

Makefile (404B)


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