40 lines
638 B
Makefile
40 lines
638 B
Makefile
ifeq ($(SRCDIR),)
|
|
updir = $(shell echo $(dir $(1)) | sed 's/.$$//')
|
|
LIBDIR := $(call updir,$(CURDIR))
|
|
SRCDIR := $(call updir,$(LIBDIR))
|
|
BLDDIR := $(SRCDIR)
|
|
endif
|
|
SUBDIR := lib/expat
|
|
|
|
include $(BLDDIR)/config.mk
|
|
|
|
# Build up SUBDIRS:
|
|
SUBDIRS = gennmtab xmlparse xmltok
|
|
|
|
default: all
|
|
|
|
.PHONY: all clean distclean tags distdir intall check dep
|
|
|
|
all: $(SUBDIRS:%=%/all)
|
|
|
|
clean: $(SUBDIRS:%=%/clean) clean-common
|
|
|
|
distclean: $(SUBDIRS:%=%/distclean) distclean-common
|
|
|
|
tags: $(SUBDIRS:%=%/tags) TAGS
|
|
|
|
DISTFILES =
|
|
|
|
distdir: distdir-common
|
|
|
|
install: $(SUBDIRS:%=%/install)
|
|
|
|
check:
|
|
|
|
dep: $(SUBDIRS:%=%/dep)
|
|
|
|
include $(SRCDIR)/common.mk
|
|
|
|
|
|
|