Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
26
Src/external_dependencies/openmpt-trunk/include/lhasa/pkg/win32/GNUmakefile
vendored
Normal file
26
Src/external_dependencies/openmpt-trunk/include/lhasa/pkg/win32/GNUmakefile
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
include ../config.make
|
||||
|
||||
TOPLEVEL=../..
|
||||
|
||||
EXE_FILES=$(TOPLEVEL)/src/lha.exe
|
||||
|
||||
ZIP=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip
|
||||
|
||||
$(ZIP): staging
|
||||
zip -j -r $@ staging/
|
||||
|
||||
staging: $(EXE_FILES) $(patsubst %,$(TOPLEVEL)/%,$(DOC_FILES))
|
||||
rm -rf staging
|
||||
mkdir staging
|
||||
cp $(EXE_FILES) staging/
|
||||
$(STRIP) staging/*.exe
|
||||
for f in $(DOC_FILES); do \
|
||||
cp $(TOPLEVEL)/$$f staging/$$f.txt; \
|
||||
unix2dos staging/$$f.txt; \
|
||||
done
|
||||
groff -Thtml -mandoc $(TOPLEVEL)/doc/lha.1 > staging/lha.html
|
||||
|
||||
clean:
|
||||
rm -rf $(ZIP)
|
||||
rm -rf staging
|
9
Src/external_dependencies/openmpt-trunk/include/lhasa/pkg/win32/README
vendored
Normal file
9
Src/external_dependencies/openmpt-trunk/include/lhasa/pkg/win32/README
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
Makefile to build Windows packages. Requires zip and unix2dos cygwin
|
||||
packages to be installed.
|
||||
|
||||
The configure script should be run with the right options to disable
|
||||
shared libraries:
|
||||
|
||||
./configure --disable-shared --enable-static
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue