only use these rules if the libIDL is available (and thus XPIDL is available)

This commit is contained in:
alecf%netscape.com 1999-03-12 19:35:40 +00:00
Родитель ad1fe78a92
Коммит 7b5dacf3b7
1 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -590,9 +590,18 @@ endif #STRICT_CPLUSPLUS_SUFFIX
%: %.sh
rm -f $@; cp $< $@; chmod +x $@
%.h: %.idl
# these rules only apply when the XPIDL compiler is available
ifdef BUILD_XPIDL
%.h: %.idl $(IDL_COMPILE)
$(IDL_COMPILE) -m header -w -I $(DIST)/idl $<
%.cpp: %.idl $(IDL_COMPILE)
$(IDL_COMPILE) -m stub -w -I $(DIST)/idl $<
endif
ifdef DIRS
$(DIRS)::
@if test -d $@; then \