Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
Others
MKDEP(1) OpenBSD Reference Manual MKDEP(1)
NAME
mkdep - construct Makefile dependency list
SYNOPSIS
mkdep [-ap] [-f file] [flags] file [...]
DESCRIPTION
mkdep takes a set of flags for the C compiler and a list of C source
files as arguments and constructs a set of include file dependencies
which are written into the file .depend. An example of its use in a Make-
file might be:
CFLAGS= -O -I../include
SRCS= file1.c file2.c
depend:
mkdep ${CFLAGS} ${SRCS}
where the macro SRCS is the list of C source files and the macro CFLAGS
is the list of flags for the C compiler.
The options are as follows:
-a Append to the output file, so that multiple mkdep's may be run
from a single Makefile.
-f file
Write the include file dependencies to file, instead of the de-
fault .depend.
-p Cause mkdep to produce dependencies of the form:
program: program.c
so that subsequent makes will produce program directly from its C
module rather than using an intermediate .o module. This is use-
ful for programs whose source is contained in a single module.
SEE ALSO
cc(1), cpp(1), make(1)
FILES
.depend file containing list of dependencies
HISTORY
The mkdep command appeared in 4.3BSD-Tahoe.
OpenBSD 2.6 June 6, 1993 1
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
FreeBSD Sources for mkdep(1) FreeBSD Sources for mkdep(1) OpenBSD sources for mkdep(1)
Up to: Software Development - Tools and utilities for software development
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
Others
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware >
mkdep.1/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|