Files
RedBear-OS/recipes/libs/libiconv/source/libcharset/Makefile.devel
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

41 lines
1.2 KiB
Makefile

# This is the developer's makefile, not the user's makefile.
# Don't use it unless you know exactly what you do!
SHELL = /bin/sh
MAKE = make
AUTOCONF = autoconf
AUTOHEADER = autoheader
ACLOCAL = aclocal-1.16
CP = cp
RM = rm -f
all : configures include/libcharset.h.build.in include/localcharset.h.build.in
autoconf/aclocal.m4 : $(wildcard m4/*.m4)
test -d autoconf || mkdir autoconf
$(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache
configures : configure config.h.in
configure : configure.ac autoconf/aclocal.m4
$(AUTOCONF) --include autoconf && rm -rf autom4te.cache
config.h.in : configure.ac autoconf/aclocal.m4
$(AUTOHEADER) --include autoconf && rm -rf autom4te.cache
touch config.h.in
include/libcharset.h.build.in : include/libcharset.h.in include/export.h
sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
-e '/#define _LIBCHARSET_H/r include/export.h' \
< $< > $@
include/localcharset.h.build.in : include/localcharset.h.in include/export.h
sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
-e '/#define _LOCALCHARSET_H/r include/export.h' \
< $< > $@
totally-clean : force
rm -f autoconf/aclocal.m4 configure config.h.in include/libcharset.h.build.in include/localcharset.h.build.in
force :