home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR13 / INIFIL.ZIP / EDITINI.MAK < prev    next >
Text File  |  1993-10-11  |  366b  |  11 lines

  1. ## Makefile for editini.c (edits default.gpt at install time)
  2. PROG     = editini            # Program name to compile
  3. CC     = bcc                # Command-line compiler (tcc/bcc)
  4. LIB     = \bc\lib            # Library directory
  5. INCLUDE = \bc\include        # Include directory
  6. MODEL    = l                # Memory Model
  7.  
  8. $(PROG).exe: $(PROG).cpp 
  9.     $(CC) -v -L$(LIB) -I$(INCLUDE) -m$(MODEL) $(PROG).cpp inifile.cpp
  10.  
  11.