home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / sfit110.zip / DLL / IBMDLL.MAK < prev    next >
Text File  |  1994-11-23  |  584b  |  24 lines

  1. # IBM MAKEFILE for Sfit DLL's
  2. # To make your own DLL using the IBM C set compiler. 
  3. # Change the SOURCENAME=GAUSS5 in this file to the name of your source file.
  4. # type: nmake /f ibmdll.mak on the command line.
  5. # NOTE ON SOURCE FILE:  To write your source code, modify for example CUSTFUNC.C
  6.  
  7. SOURCENAME=GAUSS5
  8.  
  9. .SUFFIXES:
  10. .SUFFIXES: .c 
  11.  
  12. $(SOURCENAME).DLL:  \
  13.   $(SOURCENAME).OBJ \
  14.   IBMDLL.MAK
  15.    ICC.EXE @<<
  16.  /Fe"$(SOURCENAME).DLL" custfunc.def 
  17. $(SOURCENAME).OBJ
  18. <<
  19.  
  20. {.}.c.obj:
  21.    ICC.EXE /Ge- /G4 /C   .\$*.c
  22.  
  23. $(SOURCENAME).OBJ:  $(SOURCENAME).c IBMDLL.MAK
  24.