* Oops. add missing posix.mk

This commit is contained in:
pancake 2011-02-21 18:17:50 +01:00
parent beb735e6e9
commit 7ba206b3f8

9
libr/fs/p/posix.mk Normal file
View File

@ -0,0 +1,9 @@
OBJ_POSIX=fs_posix.o
STATIC_OBJ+=${OBJ_POSIX}
TARGET_POSIX=fs_posix.${EXT_SO}
ALL_TARGETS+=${TARGET_POSIX}
${TARGET_POSIX}: ${OBJ_POSIX}
${CC} ${LDFLAGS} ${CFLAGS} -o ${TARGET_POSIX} ${OBJ_POSIX} ${EXTRA}