minix/lib/Makefile

41 lines
770 B
Makefile
Raw Normal View History

.include <bsd.own.mk>
2010-12-10 23:20:12 +01:00
SUBDIR= csu libc libcurses libdriver libnetdriver libedit libm libsys \
2011-02-25 13:28:07 +01:00
libtimers libutil libbz2 libl libhgfs libz libfetch libarchive \
2011-02-25 13:40:31 +01:00
libvtreefs libaudiodriver libmthread libexec libdevman libusb \
libddekit
.if ${COMPILER_TYPE} == "ack"
SUBDIR+= ack/libd ack/libe ack/libfp ack/liby
.endif
2010-12-10 23:20:12 +01:00
.if ${OBJECT_FMT} == "a.out"
SUBDIR+= libend
.endif
.include <bsd.subdir.mk>
build_ack:
sh ack_build.sh obj depend all install
build_gnu:
sh gnu_build.sh obj depend all install
2010-07-13 16:11:31 +02:00
build_clang:
sh clang_build.sh obj depend all install
2010-12-10 23:20:12 +01:00
build_elf:
sh elf_build.sh obj depend all install
clean_ack:
sh ack_build.sh clean
clean_gnu:
sh gnu_build.sh clean
2010-12-10 23:20:12 +01:00
clean_elf:
sh elf_build.sh clean
clean_clang:
sh clang_build.sh clean