CC = gcc 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 bindir = /usr/local/bin 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 install: all cp fondu ufond showfond dfont2res $(bindir)