summaryrefslogtreecommitdiffstats
path: root/loader/kon2/font/Makefile.linux
diff options
context:
space:
mode:
Diffstat (limited to 'loader/kon2/font/Makefile.linux')
-rw-r--r--loader/kon2/font/Makefile.linux31
1 files changed, 0 insertions, 31 deletions
diff --git a/loader/kon2/font/Makefile.linux b/loader/kon2/font/Makefile.linux
deleted file mode 100644
index be3a81541..000000000
--- a/loader/kon2/font/Makefile.linux
+++ /dev/null
@@ -1,31 +0,0 @@
-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