The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/servers/is/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # Makefile for Information Server (IS)
    2 SERVER = is
    3 
    4 # directories
    5 u = /usr
    6 i = $u/include
    7 s = $i/sys
    8 m = $i/minix
    9 b = $i/ibm
   10 k = $u/src/kernel
   11 p = $u/src/servers/pm
   12 f = $u/src/servers/fs
   13 
   14 # programs, flags, etc.
   15 CC =    exec cc
   16 CFLAGS = -I$i
   17 LDFLAGS = -i
   18 LIBS = -lsys -lsysutil 
   19 
   20 OBJ = main.o dmp.o dmp_kernel.o dmp_pm.o dmp_fs.o dmp_rs.o dmp_ds.o 
   21 
   22 # build local binary
   23 all build:      $(SERVER)
   24 $(SERVER):      $(OBJ)
   25         $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
   26 #       install -S 256w $@
   27 
   28 # install with other servers
   29 install:        /sbin/$(SERVER)
   30 /sbin/$(SERVER):        $(SERVER)
   31         install -o root -c $? $@
   32 #       install -o root -cs $? $@
   33 
   34 # clean up local files
   35 clean:
   36         rm -f $(SERVER) *.o *.bak 
   37 
   38 depend: 
   39         /usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
   40 
   41 # Include generated dependencies.
   42 include .depend
   43 

Cache object: 41c6b9bbf2240f94bc99c01b2cddc70e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.