File: Makefile

package info (click to toggle)
man2html 1.6g-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,164 kB
  • sloc: ansic: 9,689; sh: 2,305; makefile: 335; perl: 335; awk: 305; lisp: 171; cs: 170; xml: 119
file content (18 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (7)
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