Makefile (226B)
1 BLTHOME := ../../ 2 include $(BLTHOME)make.conf 3 4 SRCS := vfs_test.c 5 BINARY := vfs_test.bin 6 LIBS := -lposix -lblt -ldl -lc 7 8 TARGETS := foo.so 9 10 foo.so: foo.o 11 $(LD) -Bshareable -o foo.so foo.o 12 13 include $(BLTHOME)make.actions 14