File: Makefile.am

package info (click to toggle)
pentanet 2.3.1-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,124 kB
  • ctags: 2,082
  • sloc: ansic: 7,840; sh: 598; makefile: 251
file content (41 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
SUBDIRS = apps

install: 
	@echo 
	@echo 
	@echo ------------------------------------------
	@echo "[ Installing the modules/interface ]"
	@echo ------------------------------------------
	@echo 

	@ln -sf @top_srcdir@/apps/textapp/pentanett ./pentanett;
	@ln -sf @top_srcdir@/apps/monitor/pentanetm ./pentanetm;

	@echo 
	@echo
	@echo "=============================================="  
	@echo " Pent@NET package is successfully installed"
	@echo " Enjoy your world with pentamedia :-)"
	@echo "=============================================="  
	@echo
	@echo

uninstall:
	@echo 
	@echo 
	@echo ------------------------------------------
	@echo "[ Uninstalling the modules/interface ] "
	@echo ------------------------------------------
	@echo 

	@rm -f @top_srcdir@/pentanett;
	@rm -f @top_srcdir@/pentanetm;

	@echo 
	@echo
	@echo "================================================"  
	@echo " Pent@NET package is successfully uninstalled"
	@echo " Thanks very much :-P "
	@echo "================================================"  
	@echo
	@echo