diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-12-18 16:05:18 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-22 10:13:37 +0200 |
commit | 96a4f76f2e9dad7fdbd6fd7740de44bc90d5769e (patch) | |
tree | 9367832bd2a5df10897fa7f2835cc4b24f468c87 /mkfs.ubifs | |
parent | ef1e909207cd901871d60a916e4b7ff7b3e97d7d (diff) |
Unify all common build system parts
Rather than duplicating the same thing over and over in every Makefile,
move it all to common.mk.
Other things fixed here:
- doing subdirs in parallel
- fix src!=build compiling in subdirs
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'mkfs.ubifs')
-rw-r--r-- | mkfs.ubifs/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mkfs.ubifs/Makefile b/mkfs.ubifs/Makefile index 9471ac4..e5bf9ce 100644 --- a/mkfs.ubifs/Makefile +++ b/mkfs.ubifs/Makefile @@ -1,23 +1,23 @@ -DESTDIR := /usr/local -SBINDIR=/usr/sbin ALL_SOURCES=*.[ch] hashtable/*.[ch] -CFLAGS += -Wall -LDLIBS += -lz -llzo2 -lm -luuid + TARGETS = mkfs.ubifs -all: $(TARGETS) +LDLIBS_mkfs.ubifs = -lz -llzo2 -lm -luuid + +include ../common.mk -mkfs.ubifs: crc16.o crc32.o lpt.o compr.o hashtable/hashtable.o \ - hashtable/hashtable_itr.o devtable.o +$(BUILDDIR)/mkfs.ubifs: $(addprefix $(BUILDDIR)/,\ + crc16.o crc32.o lpt.o compr.o devtable.o \ + hashtable/hashtable.o hashtable/hashtable_itr.o) -clean: - rm -f *.o hashtable/*.o $(TARGETS) cscope.* +clean:: + rm -f $(BUILDDIR)/hashtable/*.o cscope.* cscope: @echo $(ALL_SOURCES) > cscope.files @cscope -bR @rm cscope.files -install: ${TARGETS} +install:: ${TARGETS} mkdir -p ${DESTDIR}/${SBINDIR} install -m 0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ |