blob: f20c76eed86dbb2b287e42bb27324d7ad3a94205 (
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
|
include ../Makefile.inc
ISYSLIB=isys
ifeq ($(ARCH),i386)
ISYSLIB=isys-diet
endif
CFLAGS = -Wall -g -O2
LDFLAGS = -g
LOADLIBES = -L../isys -L../isys/gzlib -l$(ISYSLIB) -lgunzip -lresolv -lz
ifeq (.depend,$(wildcard .depend))
TARGET=all
else
TARGET=depend all
endif
everything: $(TARGET)
all: collage
collage: collage.o commands.o mount_by_label.o
install:
mkdir -p $(DESTDIR)/$(RUNTIMEDIR)
install -s collage $(DESTDIR)/$(RUNTIMEDIR)
install mkcollagelinks $(DESTDIR)/$(RUNTIMEDIR)
clean:
rm -f collage *.o
depend:
$(CPP) -M $(CFLAGS) *.c > .depend
ifeq (.depend,$(wildcard .depend))
include .depend
endif
|