summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-05-29 15:49:01 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-05-29 15:49:01 -0700
commitbedc9ba38e1741f80eec61e76d2210724a62e8c3 (patch)
treee2a8c3835640bc2719f0d18d4f2b1523d8c43d1d /core
parentcbfa894e3cbfcad6f69d523f88caea974da4c42e (diff)
downloadsyslinux-bedc9ba38e1741f80eec61e76d2210724a62e8c3.tar.gz
core/Makefile: remove vestiges of subdirectory machinery
Diffstat (limited to 'core')
-rw-r--r--core/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/Makefile b/core/Makefile
index de39acad..3e8fd7f5 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -157,18 +157,16 @@ clean: tidy
rm -f $(ITARGET)
spotless: clean
- rm -f $(BTARGET) .depend *.so.*
+ rm -f $(BTARGET) .depend
.depend:
rm -f .depend
for csrc in $(CSRC) ; do $(CC) $(INCLUDE) -MM $$csrc >> .depend ; done
for nsrc in $(NASMSRC) ; do $(NASM) -DDEPEND $(NINCLUDE) -o `echo $$nsrc | sed -e 's/\.asm/\.o/'` -M $$nsrc >> .depend ; done
-local-depend:
+depend:
rm -f .depend
$(MAKE) .depend
-depend: local-depend
-
# Include dependencies file
include .depend