1#
2#   GNUmakefile.postamble
3#
4#   Project specific makefile rules
5#
6#   Uncomment the targets you want.
7#   The double colons (::) are important, do not make them single colons
8#   otherwise the normal makefile rules will not be performed.
9#
10
11# Things to do before compiling
12# before-all::
13
14# Things to do after compiling
15# after-all::
16
17# Things to do before installing
18# before-install::
19
20# Things to do after installing
21after-install::
22	# copy library
23	#rm -R $(GNUSTEP_LIBRARY)/$(APP_NAME)
24	cp -R Library/$(APP_NAME)/ $(GNUSTEP_LIBRARY)/
25	# set permissions (rrr)
26	chmod -R ugo+rX $(GNUSTEP_APPS)/$(APP_NAME).*
27	#chmod -R ugo+rX $(GNUSTEP_LIBRARY)/$(APP_NAME)
28
29# Things to do before uninstalling
30# before-uninstall::
31
32# Things to do after uninstalling
33# after-uninstall::
34
35# Things to do before cleaning
36# before-clean::
37
38# Things to do after cleaning
39# after-clean::
40
41# Things to do before distcleaning
42# before-distclean::
43
44# Things to do after distcleaning
45# after-distclean::
46
47# Things to do before checking
48# before-check::
49
50# Things to do after checking
51# after-check::
52