mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
546 B
Mathematica
17 lines
546 B
Mathematica
IMPDIR= $(srcdir)/config/netware
|
|
|
|
PRELUDE= prelude.o
|
|
|
|
iostream.def: Makefile
|
|
-rm -f iostream.def
|
|
echo "description \"libiostream\"" >> iostream.def
|
|
echo "screenname \"NONE\"" >> iostream.def
|
|
echo "version `echo $(VERSION) | sed 's|\.|,|g'`" >> iostream.def
|
|
echo "export @$(IMPDIR)/iostream.imp" >> iostream.def
|
|
|
|
iostream.O: $(PRELUDE) $(LIBIOSTREAM_OBJECTS)
|
|
$(CC) -Xlinker -Ur -o $@ $(PRELUDE) $(LIBIOSTREAM_OBJECTS)
|
|
|
|
iostream.nlm: iostream.def iostream.O $(IMPDIR)/iostream.imp
|
|
$(NLMCONV) -l $(LD) -T iostream.def iostream.O iostream.nlm
|