File: Makefile

package info (click to toggle)
wzip 0.1.3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 72 kB
  • ctags: 18
  • sloc: ansic: 284; makefile: 42
file content (12 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
build : wzip.c
	gcc $(CFLAGS) -o wzip wzip.c

clean :
	rm -f wzip

install : wzip wzip.1.gz examples.tar.gz
	install -s -g root -o root -m 755 wzip $(DESTDIR)/usr/bin ;\
	install -o root -g root -m 644 wzip.1.gz\
          $(DESTDIR)/usr/man/man1 ;\
	install -o root -g root -m 644 examples.tar.gz\
          $(DESTDIR)/usr/doc/wzip