mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54f132c66f
--HG-- rename : security/nss/lib/freebl/sechash.h => security/nss/lib/cryptohi/sechash.h rename : security/nss/lib/softoken/secmodt.h => security/nss/lib/pk11wrap/secmodt.h rename : security/nss/lib/freebl/hasht.h => security/nss/lib/util/hasht.h extra : rebase_source : 7da6cd73ca2605a261085ad7fb3b90315e38ad6b
27 lines
833 B
Makefile
27 lines
833 B
Makefile
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
# Some versions of yacc generate files that include platform-specific
|
|
# system headers. For example, the yacc in Solaris 2.6 inserts
|
|
# #include <values.h>
|
|
# which does not exist on NT. For portability, always use Berkeley
|
|
# yacc (such as the yacc in Linux) to generate files.
|
|
#
|
|
|
|
generate: installparse.c installparse.l
|
|
|
|
installparse.c:
|
|
yacc -p Pk11Install_yy -d installparse.y
|
|
mv y.tab.c installparse.c
|
|
mv y.tab.h installparse.h
|
|
|
|
installparse.l:
|
|
lex -olex.Pk11Install_yy.c -PPk11Install_yy installparse.l
|
|
@echo
|
|
@echo "**YOU MUST COMMENT OUT UNISTD.H FROM lex.Pk11Install_yy.cpp**"
|
|
|
|
install.c: install-ds.h install.h
|