forked from toshok/scsharp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
28 lines (23 loc) · 735 Bytes
/
Makefile.am
File metadata and controls
28 lines (23 loc) · 735 Bytes
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
SUBDIRS= docs SCSharp src tools Tests
EXTRA_DIST= HACKING
install:
@echo \"make install\" doesn\'t work yet. try again later.
dist-hook:
mkdir -p $(distdir)/sdldotnet-bin
cp sdldotnet-bin/* $(distdir)/sdldotnet-bin
#dll configs?
RELEASEDIR=$(PACKAGE)-release-$(VERSION)
release: all
rm -rf $(RELEASEDIR)
-mkdir $(RELEASEDIR)
rm -f $(RELEASEDIR).zip
@cp src/scsharp.exe $(RELEASEDIR)
@cp src/scsharp.exe.config-example $(RELEASEDIR)/scsharp.exe.config
@cp SCSharp/*.dll $(RELEASEDIR)
@cp sdldotnet-bin/*.dll $(RELEASEDIR)
@cp sdldotnet-bin/*.dll.config $(RELEASEDIR)
@cp NEWS $(RELEASEDIR)/NEWS
@cp README $(RELEASEDIR)/README
@cp AUTHORS $(RELEASEDIR)
zip -r $(RELEASEDIR).zip $(RELEASEDIR)
rm -rf $(RELEASEDIR)