Ethereal-cvs: [ethereal-cvs] cvs commit: ethereal Makefile.am Makefile.nmake

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Thu, 11 May 2000 02:34:38 -0500 (CDT)
guy         2000/05/11 02:34:35 CDT

  Modified files:
    .                    Makefile.am Makefile.nmake 
  Log:
  In "Makefile.am" and "Makefile.nmake", have "DISSECTOR_SOURCES" include
  only the dissector source files, not the header files; that way you
  don't feed the header files to "make-reg-dotc", as "make-reg-dotc" won't
  find any registration routines there so there's no point in feeding
  header files to it.
  
  Doing so means that we can make "DISSECTOR_OBJECTS" in "Makefile.nmake"
  by doing
  
  	DISSECTOR_OBJECTS = $(DISSECTOR_SOURCES:.c=.obj)
  
  rather than separately enumerating the object files, as Nmake supports
  System V "make"-style substitution.
  
  This should let users who change "DISSECTOR_SOURCES" in one of those
  files just copy it to the other file.
  
  Revision  Changes    Path
  1.194     +79 -77    ethereal/Makefile.am
  1.36      +3 -201    ethereal/Makefile.nmake