summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in35
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..0f9011b
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,35 @@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+bindir = @bindir@
+
+CC = @CC@
+
+WFLAGS = -Wmissing-prototypes -Wunused -Wimplicit -Wreturn-type -Wparentheses -pedantic
+CFLAGS = -g $(WFLAGS)
+FONDUOBJS = fondu.o readnfnt.o
+UFONDOBJS = ufond.o ufondbdf.o ufondpfb.o ufondttf.o crctab.o
+DFONT2RESOBJS = dfont2res.o crctab.o
+SHOWOBJS = showfond.o
+
+all: fondu ufond showfond dfont2res
+
+fondu: $(FONDUOBJS)
+ $(CC) $(CFLAGS) -o fondu $(FONDUOBJS)
+
+ufond: $(UFONDOBJS)
+ $(CC) $(CFLAGS) -o ufond $(UFONDOBJS)
+
+showfond: $(SHOWOBJS)
+ $(CC) $(CFLAGS) -o showfond $(SHOWOBJS)
+
+dfont2res: $(DFONT2RESOBJS)
+ $(CC) $(CFLAGS) -o dfont2res $(DFONT2RESOBJS)
+
+clean:
+ -rm -f *.o fondu ufond showfond dfont2res
+
+distclean: clean
+ -rm Makefile
+
+install: all
+ cp fondu ufond showfond dfont2res $(bindir)