14 lines
254 B
Makefile
14 lines
254 B
Makefile
MODDIR=.
|
|
|
|
include $(MODDIR)/make/defs.mk
|
|
SUBDIRS = $(REQUIRED)
|
|
include $(MODDIR)/make/rules.mk
|
|
include $(MODDIR)/make/rpmdist.mk
|
|
|
|
all:
|
|
$(make_subdirs_target)
|
|
clean distclean:
|
|
rm -rf $(CLEAN)
|
|
$(make_subdirs_target)
|
|
install: all
|
|
$(make_subdirs_target)
|