diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-12-21 18:42:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-12-21 18:42:28 +0000 |
commit | e1db87b9b9e4a582e106fb9f24e6be21c8fa0917 (patch) | |
tree | 15f651db405961c6249524848702e4f656bb28c3 /tools/Makefile | |
parent | 636afb483acfe3dd3f668b88cd484f10a8fa3e20 (diff) | |
download | drakx-e1db87b9b9e4a582e106fb9f24e6be21c8fa0917.tar drakx-e1db87b9b9e4a582e106fb9f24e6be21c8fa0917.tar.gz drakx-e1db87b9b9e4a582e106fb9f24e6be21c8fa0917.tar.bz2 drakx-e1db87b9b9e4a582e106fb9f24e6be21c8fa0917.tar.xz drakx-e1db87b9b9e4a582e106fb9f24e6be21c8fa0917.zip |
no_comment
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index fec667eff..654345ef8 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,17 +3,22 @@ DEST = $(ROOTDEST)/Mandrake/mdkinst RPMS = $(wildcard $(ROOTDEST)/Mandrake/RPMS/*.rpm) DIRS = ddcprobe pnp_serial BASE = $(ROOTDEST)/Mandrake/base +CFLAGS = -Wall .PHONY: clean install $(DIRS) -all: $(BASE)/depslist $(BASE)/hdlist $(DIRS) install +all: $(BASE)/depslist $(BASE)/hdlist $(DIRS) install $(DIRS): make -C $@ install: - $(MAKE) gendepslist rpm2header + $(MAKE) gendepslist rpm2header xhost+ install make_mdkinst_stage2 gendepslist rpm2header genhdlist $(ROOTDEST)/misc + install -s xhost+ $(DEST)/usr/bin + +xhost+: %: %.c + $(CC) $(CFLAGS) $< -L/usr/X11R6/lib -lX11 -o $@ gendepslist: %: %.cc $(CXX) -I/usr/include/rpm $(CFLAGS) $< -lrpm -ldb1 -lz -o $@ |