From 2dafe3f23eb19b7cf8a10617c3084a78092fe80f Mon Sep 17 00:00:00 2001 From: gdr Date: Fri, 5 Sep 1997 06:35:22 +0000 Subject: [PATCH] depend on paths.mk --- lib/libc/sys/Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/libc/sys/Makefile b/lib/libc/sys/Makefile index 1294ea8..c484473 100644 --- a/lib/libc/sys/Makefile +++ b/lib/libc/sys/Makefile @@ -1,12 +1,20 @@ # -# $Id: Makefile,v 1.1 1997/02/28 05:12:50 gdr Exp $ +# gno/lib/libc/sys/Makefile +# +# Devin Reade, 1997. +# +# $Id: Makefile,v 1.2 1997/09/05 06:35:22 gdr Exp $ # +.INCLUDE: ../../../paths.mk .INCLUDE: ../../const.mk OBJS = trap.o syscall.o exec.o -default: $(OBJS) +build: $(OBJS) + +clean clobber: + $(RM) -f $(OBJS) .INCLUDE: ../rules.mk