Name Date Size #Lines LOC

..22-Aug-2023-

doc/H22-Aug-2023-2,6932,606

m4/H22-Aug-2023-9,1358,260

magic/H22-Aug-2023-38,63135,623

python/H22-Aug-2023-953756

src/H22-Aug-2023-22,51617,703

tests/H22-Aug-2023-1,2591,113

AUTHORSH A D22-Aug-202313 21

COPYINGH A D22-Aug-20231.6 KiB3026

ChangeLogH A D22-Aug-202357.5 KiB2,0041,196

INSTALLH A D22-Aug-202315.2 KiB366284

MAINTH A D22-Aug-20231.5 KiB4535

Makefile.amH A D22-Aug-2023341 115

Makefile.inH A D22-Aug-202327.7 KiB884781

NEWSH A D22-Aug-202315 21

README.DEVELOPERH A D22-Aug-2023918 5034

RELEASE-PROCEDUREH A D22-Aug-20231.2 KiB3027

TODOH A D22-Aug-20232 KiB5045

acinclude.m4H A D22-Aug-20232 KiB6053

aclocal.m4H A D22-Aug-202341.1 KiB1,1431,038

compileH A D22-Aug-20237.2 KiB349259

config.guessH A D22-Aug-202343.9 KiB1,5091,310

config.h.inH A D22-Aug-202311.3 KiB427300

config.subH A D22-Aug-202330.8 KiB1,7961,639

configureH A D22-Aug-2023488.7 KiB17,07114,264

configure.acH A D22-Aug-20236.5 KiB221198

depcompH A D22-Aug-202323 KiB792502

install-shH A D22-Aug-20236.6 KiB302199

libmagic.pc.inH A D22-Aug-2023210 119

ltmain.shH A D22-Aug-2023316.8 KiB11,1637,994

missingH A D22-Aug-20236.7 KiB216143

README.DEVELOPER

1# How to get started developing
2
3@(#) $File: README.DEVELOPER,v 1.9 2021/09/20 14:04:39 christos Exp $
4
5## Auto files
6
7After checking out the source, run the following:
8
9	autoreconf -f -i
10	make distclean	# this can fail if you have not built before
11	./configure --disable-silent-rules
12	make -j4
13	make -C tests check
14
15If you see errors, make sure you have the latest libtool and autoconf
16This has been tested with autoconf-2.69 and libtool-2.4.2
17
18## Installing dependencies
19
20If your platform doesn't have the above tools, install the following
21packages first.
22
23### Debian
24
25	apt-get install \
26	    automake \
27	    gcc \
28	    libtool \
29	    make \
30	    python \
31	    zlib1g-dev \
32
33See also `.travis.yml`.
34
35### Mac OS X (MacPorts)
36
37	port install \
38	    autoconf \
39	    automake \
40	    libtool \
41
42### Mac OS X (HomeBrew)
43
44	brew install autoconf automake libtool
45
46Tested with:
47	autoconf 2.69
48	automake 1.16.1
49	libtool 2.4.6
50