1 | # makefile for mingw on x86
|
---|
2 | # Builds both dll (with import lib) and static lib versions
|
---|
3 | # of the library, and builds two copies of pngtest: one
|
---|
4 | # statically linked and one dynamically linked.
|
---|
5 | #
|
---|
6 | # Built from makefile.cygwin
|
---|
7 | # Copyright (C) 2002, 2006 Soren Anderson, Charles Wilson,
|
---|
8 | # and Glenn Randers-Pehrson, based on makefile for linux-elf w/mmx by:
|
---|
9 | # Copyright (C) 1998-2000, 2007 Greg Roelofs
|
---|
10 | # Copyright (C) 1996, 1997 Andreas Dilger
|
---|
11 | # For conditions of distribution and use, see copyright notice in png.h
|
---|
12 |
|
---|
13 |
|
---|
14 | # This makefile intends to support building outside the src directory
|
---|
15 | # if desired. When invoking it, specify an argument to SRCDIR on the
|
---|
16 | # command line that points to the top of the directory where your source
|
---|
17 | # is located.
|
---|
|
---|