home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / server / ddx / x386 / Imakefile < prev    next >
Encoding:
Makefile  |  1991-07-16  |  912 b   |  41 lines

  1. XCOMM $XConsortium: Imakefile,v 1.1 91/07/16 22:57:37 gildea Exp $
  2. #include <Server.tmpl>
  3. #define IHaveSubdirs
  4.  
  5. SUBDIRS = etc vga cfb.banked drivers $(LOCALE)
  6.  
  7. FILES = COPYRIGHT CONFIG README
  8.  
  9. SRCS =    \
  10.     x386Config.c \
  11.     x386Cursor.c \
  12.     x386Events.c \
  13.     x386Init.c \
  14.     x386Io.c \
  15.     x386Kbd.c
  16.  
  17. OBJS = \
  18.     x386Config.o \
  19.     x386Cursor.o \
  20.     x386Events.o \
  21.     x386Io.o \
  22.     x386Kbd.o
  23.  
  24.    INCLUDES = -I. -I../mfb -I../mi -I../../include -I../../os \
  25.           -I../../../extensions/include -I$(INCLUDESRC)
  26.  
  27. all:: x386Init.o subdirs
  28.  
  29. SpecialObjectRule(x386Config.o,,'-DSERVER_CONFIG_FILE="$(LIBDIR)/Xconfig"')
  30. SpecialObjectRule(x386Error.o,,$(LOCALEDEF))
  31. NormalLibraryObjectRule()
  32. NormalLibraryTarget(x386,$(OBJS))
  33.  
  34. InstallManPage(X386,$(MANDIR))
  35. InstallNonExec(Xconfig,$(LIBDIR))
  36. InstallMultipleDestFlags(install,$(FILES),$(LIBDIR)/etc,$(INSTDATFLAGS))
  37.  
  38. NamedMakeSubdirs(subdirs,$(SUBDIRS))
  39. DependTarget()
  40. DependSubdirs($(SUBDIRS))
  41.