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

.s.o transformation rule.
This commit is contained in:
Ruslan Ermilov 2003-06-30 14:10:58 +00:00
parent 6de4623bfe
commit 6c874d4fa8
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>