home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume15 / cardfile / patch02 / Imakefile
Encoding:
Makefile  |  1990-12-17  |  1.3 KB  |  76 lines

  1. #if (defined(VaxArchitecture) && !defined(UltrixArchitecture)) || \
  2.     (defined(RtArchitecture) && !defined(AIXArchitecture))
  3. DEFINES=    -DBSD_RE -DTERMCAP -DBSD_TTY -DBSD_STRING\
  4.         -DBSD_SIG -DSIGRTN=int
  5. SYS_LIBRARIES=    -lcurses -ltermcap
  6. #else
  7. #  if defined(UltrixArchitecture)
  8. DEFINES=    -DBSD_RE -DTERMCAP -DBSD_TTY -DBSD_STRING\
  9.         -DBSD_SIG -DSIGRTN=void -DTERMIO
  10. SYS_LIBRARIES=    -lcurses -ltermcap
  11. #  else
  12. #    error "I don't know what kind of system you're compiling on!
  13. #  endif
  14. #endif
  15.  
  16. CDEBUGFLAGS=    -g
  17.  
  18. SRCS=        \
  19.         cardfile.c \
  20.         add.c \
  21.         change.c \
  22.         common.c \
  23.         compress.c \
  24.         define.c \
  25.         delete.c \
  26.         dumpdb.c \
  27.         extract.c \
  28.         find.c \
  29.         findrcds.c \
  30.         fmt_chk.c \
  31.         getkey.c \
  32.         keymatch.c \
  33.         maint.c \
  34.         menu.c \
  35.         printdb.c \
  36.         putrcd.c \
  37.         rawio.c \
  38.         rbuildak.c \
  39.         screen.c \
  40.         setupkeys.c \
  41.         updak.c \
  42.         $(NULL)
  43.  
  44. OBJS=        \
  45.         cardfile.o \
  46.         add.o \
  47.         change.o \
  48.         common.o \
  49.         compress.o \
  50.         define.o \
  51.         delete.o \
  52.         dumpdb.o \
  53.         extract.o \
  54.         find.o \
  55.         findrcds.o \
  56.         fmt_chk.o \
  57.         getkey.o \
  58.         keymatch.o \
  59.         maint.o \
  60.         menu.o \
  61.         printdb.o \
  62.         putrcd.o \
  63.         rawio.o \
  64.         rbuildak.o \
  65.         screen.o \
  66.         setupkeys.o \
  67.         updak.o \
  68.         $(NULL)
  69.  
  70. ComplexProgramTarget(cardfile)
  71.  
  72. cardfile.man: manual.cpp
  73.     $(CPP) -C -P manual.cpp | sed -e '/^$$/d' > cardfile.man
  74.  
  75. install:: install.man
  76.