1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#
# Makefile for ofstd/include
#
@SET_MAKE@
SHELL = /bin/sh
srcdir = @srcdir@
top_srcdir = @top_srcdir@
configdir = @top_srcdir@/@configdir@
include $(configdir)/@common_makefile@
all:
install:
$(configdir)/mkinstalldirs $(DESTDIR)$(includedir)/dcmtk/ofstd
for file in dcmtk/ofstd/*.h ; do \
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/dcmtk/ofstd ;\
done
$(configdir)/mkinstalldirs $(DESTDIR)$(includedir)/dcmtk/ofstd/variadic
for file in dcmtk/ofstd/variadic/*.h ; do \
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/dcmtk/ofstd/variadic ;\
done
$(configdir)/mkinstalldirs $(DESTDIR)$(includedir)/dcmtk/ofstd/diag
for file in dcmtk/ofstd/diag/*.def ; do \
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/dcmtk/ofstd/diag ;\
done
clean:
rm -f $(TRASH)
distclean:
rm -f $(DISTTRASH)
|