1 TOP := $(shell dirname `pwd -P`)
6 include ../Makefile.head
8 IDL := $(shell find . -name '*.idl')
10 TARGETS := $(BUILDDIR)/ifaces
12 $(BUILDDIR)/ifaces: $(IDL) $(IDLC_target)
13 @echo $(COMP): System IDL files
14 @$(RMDIR) $(BUILDDIR)/ifaces
15 @if ! $(IDLC) -o $(BUILDDIR)/ifaces -s System $(IDL); then \
20 include ../Makefile.tail