blob: fbd255e8437279c45440a0ff49a66142dd6ca644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
include ../Makefile.inc
ARCH := $(patsubst i%86,i386,$(shell uname -m))
ARCH := $(patsubst sparc%,sparc,$(ARCH))
ISYSLIB=isys
ifeq ($(ARCH),i386)
ISYSLIB=isys-diet
endif
LOADLIBES = -L../isys -l$(ISYSLIB) -lpopt
CFLAGS = -Wall -g -I/usr/include/rpm -I..
LDFLAGS = -g -static
MODDEPS = moddeps
ifeq (.depend,$(wildcard .depend))
TARGET=all
else
TARGET=depend all
endif
everything: $(TARGET)
all: modlist $(MODDEPS) genhdlist snarffont mapshdr readmap
modlist: modlist.o
moddeps: moddeps.o
$(CC) $(LDFLAGS) -o moddeps moddeps.o ../loader/modules.o \
$(LOADLIBES) \
../isys/modutils/insmod/libmodutils.a \
../isys/modutils/util/libutil.a \
../isys/modutils/obj/libobj.a -lrpm -lrpmdb -lrpmio -lbz2 \
-lpopt -lgunzip -L../isys/gzlib
genhdlist: genhdlist.c hash.c
$(CC) $(LDFLAGS) $(CFLAGS) -o genhdlist genhdlist.c hash.c -lrpm -lrpmdb -lrpmio \
-lbz2 -lz -lpopt
depends:
install: all
mkdir -p $(DESTDIR)/usr/bin
mkdir -p $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s genhdlist $(DESTDIR)/$(RUNTIMEDIR)
install -m755 trimpcitable $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s moddeps $(DESTDIR)/$(RUNTIMEDIR)
install -m755 filtermoddeps $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s modlist $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s checkcards.py $(DESTDIR)/$(RUNTIMEDIR)
#
# removed genhdlist from clean line so it will be distributed on CDROM image
#
clean:
rm -f modlist moddeps snarffont genhdlist mapshdr readmap *.o
depend:
$(CPP) -M $(CFLAGS) *.c > .depend
ifeq (.depend,$(wildcard .depend))
include .depend
endif
|