DOCERR: MASM 6.0 Makefile BELL.MAK Gives C1024 Compiler Error

ID: Q71980


The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS, versions 6.0, 6.0a, 6.0b


SUMMARY

When NMAKE is run on the makefile BELL.MAK included with the sample programs in the Microsoft Macro Assembler (MASM) version 6.0, the following error is generated:

BELL.c(31): fatal error C1024: cannot open include file 'demo.h'
This error occurs because the makefile does not contain the correct directory location for the file DEMO.H.

Any of the following methods can be used to work around the C1024 error:

  1. Copy the file DEMO.H from the \SAMPLES\DEMOS subdirectory to the \SAMPLES\TSR subdirectory.


  2. -or-

  3. Copy the file DEMO.H from the \SAMPLES\DEMOS subdirectory to a directory specified by your INCLUDE environment variable.


  4. -or-

  5. Use the /I assembler switch to specify the \SAMPLES\DEMO directory as an additional directory to search for include files. This can be done from inside the Programmer's WorkBench as follows:

    • Choose the Set Program List option from the Make menu.


    • Select BELL.MAK from the list of available files.


    • Choose C Compiler Options from the Options menu.


    • In the Additional Options field, enter the /I option with the path to the directory containing DEMO.H. For example:
      /IC:\MASM\SAMPLES\DEMOS





MORE INFORMATION

By default, BELL.MAK is installed in a subdirectory under MASM 6.00 called \SAMPLES\TSR. BELL.MAK should compile the file BELL.C and assemble the files INSTALL.ASM and HANDLERS.ASM. BELL.C includes the file DEMO.H, which is located in the \SAMPLES\DEMO subdirectory.

The C1024 error occurs because the compiler cannot find DEMO.H, since the compiler searches for include files only in the current directory or in the directory(s) pointed to by the INCLUDE environment variable.

Additional query words: 6.00

Keywords :
Version : :6.0,6.0a,6.0b
Platform :
Issue type :


Last Reviewed: January 13, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.