- Move common definitions to Makefile.inc

- Revert change common/os.h -> os.h. From Mats O Jansson.
This commit is contained in:
christos
1997-04-17 21:08:57 +00:00
parent 6c9c784d7f
commit 0032f58a4b
12 changed files with 29 additions and 35 deletions

View File

@@ -1,14 +1,12 @@
# $NetBSD: Makefile,v 1.4 1997/04/16 13:30:03 christos Exp $
# $NetBSD: Makefile,v 1.5 1997/04/17 21:09:31 christos Exp $
PROG= moptrace
SRCS= moptrace.c print.c cmp.c get.c mopdef.c nma.c device.c version.c pf.c \
loop-bsd.c dl.c rc.c
MAN= moptrace.1
CFLAGS+= -I${.CURDIR}/..
CLEANFILES= version.c version.h
LDADD= -lkvm
DPADD= ${LIBKVM}
.PATH: ${.CURDIR}/../common
version.c version.h: ${.CURDIR}/../common/VERSION
rm -f version.c; \

View File

@@ -1,4 +1,4 @@
/* $NetBSD: moptrace.c,v 1.3 1997/04/16 13:31:03 christos Exp $ */
/* $NetBSD: moptrace.c,v 1.4 1997/04/17 21:09:33 christos Exp $ */
/*
* Copyright (c) 1993-95 Mats O Jansson. All rights reserved.
@@ -30,7 +30,7 @@
*/
#ifndef LINT
static char rcsid[] = "$NetBSD: moptrace.c,v 1.3 1997/04/16 13:31:03 christos Exp $";
static char rcsid[] = "$NetBSD: moptrace.c,v 1.4 1997/04/17 21:09:33 christos Exp $";
#endif
/*
@@ -40,7 +40,7 @@ static char rcsid[] = "$NetBSD: moptrace.c,v 1.3 1997/04/16 13:31:03 christos Ex
* moptrace [ -d ] [ -3 | -4 ] interface
*/
#include "common/os.h"
#include "os.h"
#include "common/common.h"
#include "common/mopdef.h"
#include "common/device.h"