]> git.buserror.net Git - polintos/scott/priv.git/blob - idl/Makefile
Add first draft of marshalling spec
[polintos/scott/priv.git] / idl / Makefile
1 TOP := $(shell dirname `pwd -P`)
2 COMP := idl
3 BUILDTYPE := build
4 NODEPS := y
5 ARCHINDEP := y
6 include ../Makefile.head
7
8 IDL := $(shell find . -name '*.idl')
9
10 TARGETS := $(BUILDDIR)/ifaces
11
12 $(BUILDDIR)/ifaces: $(IDL) $(IDLC)
13         @echo $(COMP): System IDL files
14         @$(RMDIR) $(BUILDDIR)/ifaces
15         @if ! $(IDLC) -o $(BUILDDIR)/ifaces -s System $(IDL); then \
16                 $(RMDIR) "$@"; \
17                 false; \
18         fi
19
20 include ../Makefile.tail