forked from namjaejeon/exfatprogs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfigure.ac
More file actions
executable file
·37 lines (28 loc) · 783 Bytes
/
Copy pathconfigure.ac
File metadata and controls
executable file
·37 lines (28 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
AC_PREREQ([2.68])
m4_define([exfat_tools_major_ver], [1])
m4_define([exfat_tools_minor_ver], [0])
m4_define([exfat_tools_micro_ver], [0])
m4_define([exfat_tools_version],
[exfat_tools_major_ver.exfat_tools_minor_ver.exfat_tools_micro_ver])
AC_INIT([CIFSD tools], [exfat_tools_version],
[linkinjeon@gmail.com])
AC_DEFINE([EXFAT_TOOLS_VERSION], "exfat_tools_version", [exfat-tools version])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign tar-pax dist-xz subdir-objects])
AC_LANG([C])
AC_PROG_CC
AC_PROG_CC_STDC
AM_SILENT_RULES([yes])
AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG([0.9])
AC_CONFIG_FILES([
Makefile
lib/Makefile
mkfs/Makefile
fsck/Makefile
dump/Makefile
])
AC_OUTPUT