Luker ut install

This commit is contained in:
2018-10-05 13:15:01 +02:00
parent 856b3f71e1
commit 332ca2ece9
18 changed files with 2195 additions and 0 deletions

9
Makefile.am Normal file
View File

@@ -0,0 +1,9 @@
bin_PROGRAMS = mysql-dbadm mysql-useradm
mysql_admutils_SOURCE = common.c mysql-admutils.h pwyacc.y pwlex.l pwfile.c
mysql_dbadm_SOURCES = mysql-dbadm.c $(mysql_admutils_SOURCE)
mysql_useradm_SOURCES = mysql-useradm.c $(mysql_admutils_SOURCE)
BUILT_SOURCES = pwyacc.c pwyacc.h pwlex.c
YFLAGS = -d
INCLUDES = @MYSQL_INCLUDE@ -DSYSCONFDIR=\"$(sysconfdir)\"
LDADD = @MYSQL_LIBS@ @LEXLIB@
LDFLAGS = @MYSQL_LFLAGS@