diff options
Diffstat (limited to 'usr.bin/mex/Makefile')
-rw-r--r-- | usr.bin/mex/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/mex/Makefile b/usr.bin/mex/Makefile new file mode 100644 index 0000000..6c0db59 --- /dev/null +++ b/usr.bin/mex/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/mex: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) |