blob: be3a81541c137bd55196d091b17974784aba2e1b (
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
|
OBJ = fld.o minix.o fontx2.o bdf.o j3100.o
ifeq (../.config,$(wildcard ../.config))
include ../.config
endif
#CC = cc -g
#LD = cc -g
LOADLIBES = $(LIB)
all: fld
fld: $(OBJ) $(LIB)
$(LD) -o fld $(OBJ) $(LIB)
bdfcat: bdf.c $(LIB)
$(CC) $(CFLAGS) -DBDFCAT -o bdfcat bdf.c $(LIB)
depend .depend:
$(CC) $(CFLAGS) -M *.c > .depend
clean:
$(RM) *.o fld fontx.c *~ .depend
install: fld
$(INSTALL) -m 4755 fld $(BINDIR)
ifeq (.depend,$(wildcard .depend))
include .depend
endif
|