Switch to using bsd.prog.mk; this gives us back the standard

.s.o transformation rule.
This commit is contained in:
ru 2003-06-30 14:10:58 +00:00
parent ed55c31b37
commit afcf98e92a
2 changed files with 4 additions and 10 deletions

View File

@ -1,14 +1,11 @@
# $FreeBSD$
OBJS= btxcsu.o btxsys.o btxv86.o
CLEANFILES+= crt0.o ${OBJS}
CLEANFILES= crt0.o
all: crt0.o
crt0.o: ${OBJS}
${LD} ${LDFLAGS} -i -o ${.TARGET} ${OBJS}
.include <bsd.lib.mk>
.s.o:
${AS} ${AFLAGS} -o ${.TARGET} ${.IMPSRC}
.include <bsd.prog.mk>

View File

@ -1,14 +1,11 @@
# $FreeBSD$
OBJS= btxcsu.o btxsys.o btxv86.o
CLEANFILES+= crt0.o ${OBJS}
CLEANFILES= crt0.o
all: crt0.o
crt0.o: ${OBJS}
${LD} ${LDFLAGS} -i -o ${.TARGET} ${OBJS}
.include <bsd.lib.mk>
.s.o:
${AS} ${AFLAGS} -o ${.TARGET} ${.IMPSRC}
.include <bsd.prog.mk>