summaryrefslogtreecommitdiffstats
path: root/gencat/Makefile
blob: 8800958488a233e7e12047e4ab7c934de05d8d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# extremely primitive makefile
# just for people that don't have gencat but need it to make man

# note: you only need gencat if you want non-English messages

gencat: gencat.o genlib.o
        $(CC) $(LDFLAGS) -o gencat gencat.o genlib.o

gencat.o genlib.o: gencat.h

genlib.o: msgcat.h

install: gencat
        cp gencat$(EXEEXT) $(DESTDIR)$(PREFIX)/usr/bin

clean:
        rm -f *~ *.o gencat