home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / radi116c.zip / radius116c / src / radius / makefile < prev    next >
Makefile  |  1999-01-04  |  3KB  |  146 lines

  1. # makefile
  2. # Created by IBM WorkFrame/2 MakeMake at 14:47:34 on 26 Feb 1997
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::C++ Compiler
  6. #  Link::Linker
  7.  
  8. .SUFFIXES: .c .obj 
  9.  
  10. .all: \
  11.     .\radiusd.exe
  12.  
  13. .c.obj:
  14.     @echo " Compile::C++ Compiler "
  15.     icc.exe /Ti /Gm /C %s
  16.  
  17. {.}.c.obj:
  18.     @echo " Compile::C++ Compiler "
  19.     icc.exe /Ti /Gm /C %s
  20.  
  21. .\radiusd.exe: \
  22.     .\util.obj \
  23.     .\version.obj \
  24.     .\tree.obj \
  25.     .\acct.obj \
  26.     .\attrprint.obj \
  27.     .\CRYPT.obj \
  28.     .\crypt_ut.obj \
  29.     .\dict.obj \
  30.     .\getpass.obj \
  31.     .\kill.obj \
  32.     .\md5.obj \
  33.     .\radiusd.obj \
  34.     .\shrmemry.obj \
  35.     .\timer.obj \
  36.     .\users.obj \
  37.     {$(LIB)}so32dll.lib \
  38.     {$(LIB)}tcp32dll.lib
  39.     @echo " Link::Linker "
  40.     icc.exe @<<
  41.      /B" "
  42.      /Feradiusd.exe 
  43.      so32dll.lib 
  44.      tcp32dll.lib 
  45.      .\util.obj
  46.      .\version.obj
  47.      .\tree.obj
  48.      .\acct.obj
  49.      .\attrprint.obj
  50.      .\CRYPT.obj
  51.      .\crypt_ut.obj
  52.      .\dict.obj
  53.      .\getpass.obj
  54.      .\kill.obj
  55.      .\md5.obj
  56.      .\radiusd.obj
  57.      .\shrmemry.obj
  58.      .\timer.obj
  59.      .\users.obj
  60. <<
  61.  
  62. .\util.obj: \
  63.     .\util.c \
  64.     {.;$(INCLUDE);}radius.h \
  65.     {.;$(INCLUDE);}conf.h \
  66.     {.;$(INCLUDE);}pwd.h \
  67.     {.;$(INCLUDE);}util.h
  68.  
  69. .\users.obj: \
  70.     .\users.c \
  71.     {.;$(INCLUDE);}radius.h \
  72.     {.;$(INCLUDE);}conf.h \
  73.     {.;$(INCLUDE);}pwd.h \
  74.     {.;$(INCLUDE);}util.h
  75.  
  76. .\timer.obj: \
  77.     .\timer.c \
  78.     {.;$(INCLUDE);}timer.h
  79.  
  80. .\shrmemry.obj: \
  81.     .\shrmemry.c
  82.  
  83. .\radiusd.obj: \
  84.     .\radiusd.c \
  85.     {.;$(INCLUDE);}radius.h \
  86.     {.;$(INCLUDE);}conf.h \
  87.     {.;$(INCLUDE);}pwd.h \
  88.     {.;$(INCLUDE);}util.h \
  89.     {.;$(INCLUDE);}crypt.h
  90.  
  91. .\md5.obj: \
  92.     .\md5.c \
  93.     {.;$(INCLUDE);}md5.h
  94.  
  95. .\kill.obj: \
  96.     .\kill.c
  97.  
  98. .\getpass.obj: \
  99.     .\getpass.c
  100.  
  101. .\dict.obj: \
  102.     .\dict.c \
  103.     {.;$(INCLUDE);}radius.h \
  104.     {.;$(INCLUDE);}conf.h \
  105.     {.;$(INCLUDE);}pwd.h \
  106.     {.;$(INCLUDE);}util.h
  107.  
  108. .\crypt_ut.obj: \
  109.     .\crypt_ut.c \
  110.     {.;$(INCLUDE);}ufc-crypt.h \
  111.     {.;$(INCLUDE);}patchlevel.h \
  112.     {.;$(INCLUDE);}pl.h \
  113.     {.;$(INCLUDE);}ufc.h
  114.  
  115. .\CRYPT.obj: \
  116.     .\CRYPT.C \
  117.     {.;$(INCLUDE);}ufc-crypt.h
  118.  
  119. .\attrprint.obj: \
  120.     .\attrprint.c \
  121.     {.;$(INCLUDE);}radius.h \
  122.     {.;$(INCLUDE);}conf.h \
  123.     {.;$(INCLUDE);}pwd.h \
  124.     {.;$(INCLUDE);}util.h
  125.  
  126. .\acct.obj: \
  127.     .\acct.c \
  128.     {.;$(INCLUDE);}radius.h \
  129.     {.;$(INCLUDE);}conf.h \
  130.     {.;$(INCLUDE);}pwd.h \
  131.     {.;$(INCLUDE);}tree.h \
  132.     {.;$(INCLUDE);}util.h \
  133.     {.;$(INCLUDE);}shrMemry.h
  134.  
  135. .\tree.obj: \
  136.     .\tree.c \
  137.     {.;$(INCLUDE);}tree.h \
  138.     {.;$(INCLUDE);}shrMemry.h
  139.  
  140. .\version.obj: \
  141.     .\version.c \
  142.     {.;$(INCLUDE);}radius.h \
  143.     {.;$(INCLUDE);}conf.h \
  144.     {.;$(INCLUDE);}pwd.h \
  145.     {.;$(INCLUDE);}util.h
  146.