Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -0,0 +1,5 @@
EXTRA_DIST = \
win32/GNUmakefile \
win32/README

View file

@ -0,0 +1,18 @@
# This file is included by package makefiles, it is autogenerated
# by configure.
CC = @CC@
STRIP = @STRIP@
PACKAGE = @PACKAGE@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
# Documentation files to distribute with packages.
DOC_FILES = README \
COPYING \
NEWS

View 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

View 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