Skip to content
Snippets Groups Projects
Commit 65a5c2fd authored by Linus Tolke's avatar Linus Tolke
Browse files

Fixed bug in the Makefile. The clean did not clean the subdirs.

parent d6506493
Branches
Tags
No related merge requests found
Mon Jul 6 15:34:30 1992 Linus Tolke Y (linus@robin)
* Makefile: Completed clean to cleaning the sub-dirs also.
Wed Feb 26 19:51:37 1992 Per Cederqvist (ceder@lysator) Wed Feb 26 19:51:37 1992 Per Cederqvist (ceder@lysator)
* kom-errno.c: Lint from gcc 2.0 removed. * kom-errno.c: Lint from gcc 2.0 removed.
......
# #
# $Id: Makefile,v 0.11 1992/04/14 15:43:14 ceder Exp $ # $Id: Makefile,v 0.12 1992/07/06 13:36:11 linus Exp $
# Copyright (C) 1991 Lysator Academic Computer Association. # Copyright (C) 1991 Lysator Academic Computer Association.
# #
# This file is part of the LysKOM server. # This file is part of the LysKOM server.
...@@ -68,6 +68,11 @@ liblyskom-client$(PROFILE-LIB-SUFFIX).a: client-dir ...@@ -68,6 +68,11 @@ liblyskom-client$(PROFILE-LIB-SUFFIX).a: client-dir
clean: clean:
$(RM) $(GENERIC-CLEAN) $(LIBRARIES) $(RM) $(GENERIC-CLEAN) $(LIBRARIES)
-for i in client-dir server-dir; \
do \
[ -d $$i ] && { echo cleaning directory $$i ; \
(cd $$i; $(RM) $(GENERIC-CLEAN)) } \
done
distclean: clean distclean: clean
$(RM) $(GENERIC-DIST-CLEAN) $(RM) $(GENERIC-DIST-CLEAN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment