16 lines
183 B
Makefile
16 lines
183 B
Makefile
|
# Makefile for libend
|
||
|
|
||
|
LIB=end
|
||
|
|
||
|
SRCS= \
|
||
|
edata.s \
|
||
|
em_end.s \
|
||
|
end.s \
|
||
|
etext.s
|
||
|
|
||
|
.if (${COMPILER_TYPE} == gnu)
|
||
|
.include "${.CURDIR}/gnu/Makefile.inc"
|
||
|
.endif
|
||
|
|
||
|
.include <minix.lib.mk>
|