OSDN Git Service

projects clean up 1
[pinoc/pinoc.git] / test / Standart_startup / lib / c / string / makefile
diff --git a/test/Standart_startup/lib/c/string/makefile b/test/Standart_startup/lib/c/string/makefile
new file mode 100644 (file)
index 0000000..19cab77
--- /dev/null
@@ -0,0 +1,16 @@
+include ../../../gcctool.g
+
+OBJS   = memcmp.o memccpy.o strncmp.o memset.o memcpy.o
+
+CFLAGS = -mh -nostdinc -nostdlib -fno-builtin -Os -Wall -I ../../include
+
+all :  $(OBJS)
+       mv *.o ../
+       # string finish!!
+
+       
+.c.o : $<
+       $(CC) -c -v $< $(CFLAGS)
+
+clean :
+       rm -f *.o *.a