mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 20:31:44 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39741 72102866-910b-0410-8b05-ffd578937521
15 lines
521 B
Text
15 lines
521 B
Text
# Things to do before compiling
|
|
before-all:: ToastNotifications-0.dll
|
|
mkdir -p obj
|
|
|
|
# Things to do after compiling
|
|
# after-all::
|
|
|
|
# Things to do after clean
|
|
after-clean::
|
|
rm -rf obj
|
|
(cd ToastNotifications/Debug && (find . -type f | grep -v '.dll' | xargs rm -rf))
|
|
(cd ToastNotifications/Release && (find . -type f | grep -v '.dll' | xargs rm -rf))
|
|
(rm -rf ToastNotifications/ToastNotifications/Debug)
|
|
(rm -rf ToastNotifications/ToastNotifications/Release)
|
|
(rm -rf ToastNotifications/ipch ToastNotifications/*.sdf)
|