home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-30 | 473 b | 28 lines |
- #
- # Install corrected header files into /usr/skunk/include/fixes
- #
- # This is just a quick hack.
- #
-
- FILES=sys/time.h
-
- all default: $(FILES)
-
- sys/time.h:
- cp /usr/include/sys/time.h sys/
- chmod u+w sys/time.h
- (cd sys; \
- if patch <../sys.time.h.patch; then \
- echo ok ; \
- else \
- echo "patching failed"; \
- exit 1; \
- fi)
-
- install:
- -mkdir -p /usr/skunk/include/fixes/os5
- find . -name '*.h' -print | cpio -pduvma /usr/skunk/include/fixes/os5
-
- clean:
- rm -f $(FILES)
-