. get rid of includes in libcompat_minix: . move configfile.h to minix/include/ . all others are unneeded as they point to other files . merge the .c files with libc Change-Id: I5e840c66fb9bc484f377926aa9d66473bbd16259
22 lines
289 B
Makefile
22 lines
289 B
Makefile
all: requestor grantor 1fifo 2fifo
|
|
chmod +x down run
|
|
|
|
requestor: requestor.c inc.h
|
|
cc -static -o $@ $< -lsys -lminlib
|
|
|
|
grantor: grantor.c inc.h
|
|
cc -static -o $@ $< -lsys -lminlib
|
|
|
|
1fifo 2fifo:
|
|
mkfifo $@
|
|
|
|
run: all
|
|
sh run
|
|
|
|
kill:
|
|
sh down
|
|
|
|
clean:
|
|
rm -f grantor requestor 1fifo 2fifo
|
|
|