2005-04-19 20:53:42 +00:00
|
|
|
# Oolite-linux
|
|
|
|
# GNUmakefile.postamble: Runs after-compilation scripts.
|
|
|
|
# These copy all the base data files into where oolite expects them
|
|
|
|
# to live (Contents/Resources)
|
|
|
|
#
|
2005-04-20 19:55:51 +00:00
|
|
|
CONTENTS = Contents
|
2005-04-28 21:47:22 +00:00
|
|
|
CONTENTDIR=$(APP_NAME).app/$(CONTENTS)
|
|
|
|
GNUSTEP_OW=$(APP_NAME).app/Resources/Info-gnustep.plist
|
2005-04-20 19:55:51 +00:00
|
|
|
|
2005-04-19 20:53:42 +00:00
|
|
|
after-all::
|
2005-04-28 22:55:03 +00:00
|
|
|
rm -f $(CONTENTDIR)
|
|
|
|
$(MKDIRS) $(CONTENTDIR)
|
2005-04-28 21:47:22 +00:00
|
|
|
$(CP) -r Resources $(CONTENTDIR)/Resources
|
|
|
|
$(CP) Resources/Info-Oolite.plist $(GNUSTEP_OW)
|
2005-04-24 21:20:54 +00:00
|
|
|
|