Convert boot/ and commands/ over to bsdmake

This commit is contained in:
Arun Thomas
2010-05-12 16:28:54 +00:00
parent ce386974bc
commit 5706670029
877 changed files with 10425 additions and 41539 deletions
+5
View File
@@ -0,0 +1,5 @@
PROG= sync
BINDIR= /bin
MAN=
.include <minix.prog.mk>
+14
View File
@@ -0,0 +1,14 @@
/* sync - flush the file system buffers. Author: Andy Tanenbaum */
#include <sys/types.h>
#include <unistd.h>
_PROTOTYPE(int main, (void));
int main()
{
/* First prize in shortest useful program contest. */
/* Highest comment/code ratio */
sync();
return(0);
}