mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 17:23:36 +02:00
Remove unused code, and code which actually does something: CACHED_VARS looks as if it's sufficently and more centrally defined in make.mk, don't override that. Signed-off-by: Jan Lindemann <jan@janware.com>
22 lines
515 B
Makefile
22 lines
515 B
Makefile
TOPDIR = ..
|
|
CACHED_FILES := defs.mk projects.mk platform.mk Makefile
|
|
|
|
include $(TOPDIR)/make/proj.mk
|
|
include $(JWBDIR)/make/make.mk
|
|
|
|
ifneq ($(MAKECMDGOALS),install-links)
|
|
ifneq ($(MAKECMDGOALS),do-install-links)
|
|
include $(JWBDIR)/make/dirs.mk
|
|
endif
|
|
endif
|
|
|
|
include $(JWBDIR)/make/dev-utils.mk
|
|
|
|
all:
|
|
|
|
ifeq ($(TARGET),mingw)
|
|
install: $(INSTALL_MAKEDIR)/winres.rc.tmpl
|
|
endif
|
|
|
|
grep-vars:
|
|
@sed '/^ *[A-Z]/!d; s/^[ ]*//g; s/[=+?:].*//g; s/[ ]*//g' *.mk | sort -u
|