b0159ad168
-Makefile updates -Update mkdep -Build fixes/warning cleanups for some programs -Restore leading underscores on global syms in kernel asm files -Increase ramdisk size
15 lines
342 B
Makefile
15 lines
342 B
Makefile
# yap Makefile
|
|
|
|
# XXX: Can only be built with ACK currently
|
|
CC:=${CC:C/^gcc/cc/}
|
|
COMPILER_TYPE:=ack
|
|
|
|
PROG= yap
|
|
SRCS= assert.c commands.c display.c getcomm.c getline.c help.c \
|
|
keys.c machine.c main.c options.c output.c pattern.c \
|
|
process.c prompt.c term.c
|
|
CPPFLAGS+= -wa
|
|
LINKS+= ${BINDIR}/yap ${BINDIR}/more
|
|
MAN=
|
|
|
|
.include <minix.prog.mk>
|