mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-10 09:26:43 +00:00
36 lines
937 B
Makefile
36 lines
937 B
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-2.69
|
||
|
AUTOHEADER = autoheader-2.69
|
||
|
ACLOCAL = aclocal-1.15
|
||
|
CP = cp
|
||
|
RM = rm -f
|
||
|
|
||
|
all : configures include/localcharset.h.build.in
|
||
|
|
||
|
autoconf/aclocal.m4 : $(wildcard m4/*.m4)
|
||
|
test -d autoconf || mkdir autoconf
|
||
|
$(ACLOCAL) -I m4 --output=$@
|
||
|
|
||
|
configures : configure config.h.in
|
||
|
|
||
|
configure : configure.ac autoconf/aclocal.m4
|
||
|
$(AUTOCONF) --include autoconf
|
||
|
|
||
|
config.h.in : configure.ac autoconf/aclocal.m4
|
||
|
$(AUTOHEADER) --include autoconf
|
||
|
touch config.h.in
|
||
|
|
||
|
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/localcharset.h.build.in
|
||
|
|
||
|
force :
|