blob: 38450774d14f9493fc77c9085ec49fc87ca9d676 (
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
|
include ../Makefile.inc
CFLAGS = -Wall -g -O2
LDFLAGS = -g
LOADLIBES = -L../isys -L../isys/gzlib -lisys -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
|