Blame view

Network/libnet/docs/makefile 355 Bytes
fee2cbd6   amoreau   ajout des librairies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  all: html text info texinfo clean
  
  html: build
  	rm -f libnet.html
  	cp -f src/libnet.html .
  
  text: build
  	rm -f libnet.txt
  	cp -f src/libnet.txt .
  
  info: build
  	rm -f libnet.info
  	cp -f src/libnet.info .
  
  texinfo: build
  	rm -f libnet.txi
  	cp -f src/libnet.txi .
  
  build:
  	$(MAKE) -C src
  
  clean:
  	$(MAKE) -C src veryclean
  
  veryclean: clean
  	rm -f libnet*.*