Added README.rst for eventfd and uname samples. Updated README for gettimeofday to align with other READMEs.Updated Makefile.host file for samples to store output file in 'build' directory. Signed-off-by: Doug Foster <dougwfost@gmail.com>
6 lines
124 B
Makefile
6 lines
124 B
Makefile
# This makefile builds the sample for a POSIX system, like Linux
|
|
|
|
eventfd: src/main.c
|
|
mkdir -p build
|
|
$(CC) $^ -o build/$@
|