1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

Fix dependencies tracking and default clean rule.

This commit is contained in:
Petr Baudis 2005-09-16 13:48:22 +02:00
parent f513eefab9
commit 3b6c3cc5b4

View File

@ -43,7 +43,7 @@ DEP_FILES = $(DEP_FILES_1:%.o=%.P)
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
ifdef $(OBJS)
ifdef OBJS
-include $(DEP_FILES)
endif
@ -58,7 +58,7 @@ endif
%.a:
$(call cmd,archive)
ifdef $(OBJS)
ifdef OBJS
clean-l:
rm -f $(OBJS) *.a
endif