Bugzilla bug #62855: make the rule to build .cpp files work for OS/2

VACPP.  Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
This commit is contained in:
wtc%netscape.com 2001-02-01 18:19:47 +00:00
parent 0f7d6dba5f
commit cdc96e47f0

View File

@ -477,9 +477,13 @@ ifdef STRICT_CPLUSPLUS_SUFFIX
else
ifeq ($(OS_ARCH),WINNT)
$(CCC) -Fo$@ -c $(CFLAGS) $*.cpp
else
ifdef XP_OS2_VACPP
$(CCC) -Fo$@ -c $(CFLAGS) $*.cpp
else
$(CCC) -o $@ -c $(CFLAGS) $*.cpp
endif
endif
endif #STRICT_CPLUSPLUS_SUFFIX
%.i: %.cpp