aboutsummaryrefslogtreecommitdiff
path: root/lib/libss/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Use a more robust check for ss_err.h existing. This header isn'tBruce Evans1996-09-051-2/+2
| | | | | | | | | | | built early enough to always be installed by the `includes' target in /usr/src/Makefile. This is supposed to be handled by not installing it if it doesn't exist. However, a stale, uninstallable copy sometimes exists in the source directory, and the existence test sometimes found the wrong copy. Notes: svn path=/head/; revision=18062
* Fixed DPADD.Bruce Evans1996-09-051-4/+5
| | | | Notes: svn path=/head/; revision=18050
* cmp -s || install -c ==> install -CPeter Wemm1996-08-301-16/+9
| | | | Notes: svn path=/head/; revision=17935
* Bring in my changes for removing the pestilent obj links (unless youJordan K. Hubbard1996-06-241-3/+3
| | | | | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. Notes: svn path=/head/; revision=16663
* ``mv'' -> ``mv -f''Wolfram Schneider1996-05-071-3/+3
| | | | | | | | ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root Notes: svn path=/head/; revision=15679
* Install non-source files with the optional flag ${COPY}, not with the flag -c.Bruce Evans1995-08-061-2/+2
| | | | Notes: svn path=/head/; revision=9972
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-08-061-4/+4
| | | | | | | | | | specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary. Notes: svn path=/head/; revision=9970
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-3/+3
| | | | Notes: svn path=/head/; revision=8870
* Remove private mkdir for /usr/include/ss, no handled by mtree.Rodney W. Grimes1995-03-181-5/+1
| | | | Notes: svn path=/head/; revision=7137
* Repeat after me kids: "I will not try to install files into a directoryBill Paul1995-03-151-1/+5
| | | | | | | | | | | | | | | | | | | | | when I'm not sure whether or not that directory exists." Today I discovered that rebuilding /usr/include completely from scratch doesn't work, because the libss Makefile tries to install headers into /usr/include/ss, which 'make includes' does not create. The result is that the libss Makefile plants the header files in /usr/include as individual files called 'ss,' with the second one overwriting the first, and the third one overwriting the second. So instead of a directory called /usr/include/ss, you end up with just one file called /usr/include/ss with only the last header file in it. Check out /usr/include/ss on freefall and you'll see what I mean. I've modified the beforeinstall target in the libss Makefile to check for the presence of the ${DESTDIR}/usr/include/lbss directory and to create it if it isn't already there. Hopefully I did it right. Notes: svn path=/head/; revision=7062
* Fix broken makefile.Poul-Henning Kamp1995-02-121-5/+6
| | | | Notes: svn path=/head/; revision=6317
* CLEANFILES was missing a few files.Bruce Evans1995-02-081-2/+2
| | | | Notes: svn path=/head/; revision=6250
* Make Jordan happy:Garrett Wollman1995-01-231-4/+15
| | | | | | | | | 1) Link against object directory version of libcom_err.so. 2) Don't try to install ss_err.h if we haven't made it yet. It's not on the critical path for `make world' at this point. Notes: svn path=/head/; revision=5806
* Fix from Rod so that std_rqs.c can get rebuilt properly whenGarrett Wollman1995-01-211-2/+2
| | | | | | | doing a make world. Notes: svn path=/head/; revision=5774
* Port to FreeBSD.Garrett Wollman1995-01-191-0/+32
Notes: svn path=/head/; revision=5725