diff options
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 40 |
1 files changed, 15 insertions, 25 deletions
diff --git a/tools/Makefile b/tools/Makefile index c35f60e39..40194245d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,38 +1,28 @@ -ROOTDEST = /export -DEST = $(ROOTDEST)/Mandrake/mdkinst -RPMS = $(wildcard $(ROOTDEST)/Mandrake/RPMS/*.rpm) -DIRS = ddcprobe serial_probe -BASE = $(ROOTDEST)/Mandrake/base -CFLAGS = -Wall +DIRS = serial_probe +LDFLAGS = $(shell pkg-config libtirpc --libs) +CFLAGS = -Wall $(shell pkg-config libtirpc --cflags) + +ARCH := $(shell arch | grep -E "x86_64") +ifneq ("x$(ARCH)", "x") +LIB_NAME = lib64 +else +LIB_NAME = lib +endif .PHONY: clean install $(DIRS) -all: $(BASE)/depslist.ordered $(BASE)/compss $(DIRS) xhost+ install +all: $(DIRS) rpcinfo-flushed $(DIRS): make -C $@ install: - install -d $(ROOTDEST)/misc/auto - install make_mdkinst_stage2 $(ROOTDEST)/misc - cd /usr/bin ; install packdrake $(ROOTDEST)/misc || { echo "packdrake is missing"; exit 1; } - cd /usr/bin ; install gendistrib rpm2header $(ROOTDEST)/misc || { echo "install rpmtools first!" ; exit 1; } - cd /usr/lib/perl5/site_perl/*/*-linux ; install packdrake.pm rpmtools.pm $(ROOTDEST)/misc || { echo "install rpmtools first!" ; exit 1; } - cd /usr/lib/perl5/site_perl/*/*-linux/auto ; cp -r rpmtools $(ROOTDEST)/misc/auto || { echo "install rpmtools first!" ; exit 1; } - mkdir -p $(DEST)/usr/bin + install -d $(ROOTDEST)/misc + install mdkinst_stage2_tool drakx-in-chroot $(ROOTDEST)/misc xhost+: %: %.c - $(CC) $(CFLAGS) $< -L/usr/X11R6/lib -lX11 -o $@ - -ddcprobe/ddcxinfos: - $(MAKE) -C ddcprobe ddcxinfos - -$(BASE)/compss $(BASE)/depslist.ordered: $(BASE)/hdlists $(BASE)/hdlist.cz - gendistrib --nohdlists --distrib $(ROOTDEST) - -$(BASE)/hdlist.cz: $(BASE)/hdlists $(RPMS) - gendistrib --noclean --nobasefiles --distrib $(ROOTDEST) + $(CC) $(CFLAGS) $< -L/usr/X11R6/$(LIB_NAME) -lX11 -o $@ clean: for i in $(DIRS); do $(MAKE) -C $$i clean; done - rm -rf *~ xhost+ ddcprobe/ddcxinfos */*.o + rm -rf *~ xhost+ rpcinfo-flushed */*.o |
