From d56e9c204f2fb2344e49697b554f5c166ce1f707 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sun, 26 Apr 2009 21:23:17 +0000 Subject: [PATCH] lo.mk: Now not deleting YLo*.cpp anymore on clean target --- make/lo.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/lo.mk b/make/lo.mk index c4943c61..6327241a 100644 --- a/make/lo.mk +++ b/make/lo.mk @@ -29,7 +29,7 @@ install: $(INSTALLED_LOADABLE_OBJ_LIBS) clean: clean.lo clean.lo: profclean - rm -f *.o *.cpp *.so *.done *.dll + rm -f $(filter-out $(CPP_PREFIX)%.cpp,$(wildcard *.o *.cpp *.so *.done *.dll)) $(SO_PREFIX)%.so $(SO_PREFIX)%.dll: %.o $(CPP) -shared $^ $(LDFLAGS) -o $@