Cross Reference: Makefile
xref: /src/sys/arch/news68k/stand/common/Makefile
  • Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /src/sys/arch/news68k/stand/common/
Makefile revision 1.9
1#	$NetBSD: Makefile,v 1.9 2005/12/28 08:44:27 skrll Exp $
2
3S= ${.CURDIR}/../../../..
4
5NOMAN= # defined
6
7CFLAGS= -Os -Wall
8
9CPPFLAGS+= -D_STANDALONE
10CPPFLAGS+= -DLIBSA_USE_MEMCPY -DLIBSA_USE_MEMSET
11CPPFLAGS+= -nostdinc -I${.OBJDIR} -I${S} -I.
12CPPFLAGS+= -D__daddr_t=int32_t
13AFLAGS= -D_LOCORE
14
15CLEANFILES+= machine m68k
16
17.if !make(obj) && !make(clean) && !make(cleandir)
18.PHONY: machine-links
19beforedepend: machine-links
20machine-links:
21	-rm -f machine
22	ln -s ${S}/arch/${MACHINE}/include machine
23	-rm -f ${MACHINE_ARCH}
24	ln -s ${S}/arch/${MACHINE_ARCH}/include ${MACHINE_ARCH}
25.endif
26
27.include <bsd.prog.mk>
28
29### find out what to use for libkern
30KERN_AS= library
31.include "${S}/lib/libkern/Makefile.inc"
32LIBKERN= ${KERNLIB}
33
34### find out what to use for libz
35Z_AS= library
36.include "${S}/lib/libz/Makefile.inc"
37LIBZ= ${ZLIB}
38
39### find out what to use for libsa
40SA_AS= library
41SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_USE_LOADFILE=yes
42.include "${S}/lib/libsa/Makefile.inc"
43LIBSA= ${SALIB}
44
45LIBS= ${LIBSA} ${LIBZ} ${LIBKERN}
46
47realall: machine-links ${LIBS}
48
49cleandir distclean: cleanlibdir
50
51cleanlibdir:
52	-rm -rf lib
53

Indexes created Wed Dec 17 03:09:36 GMT 2025