]> code.delx.au - refind/blob - libeg/Makefile
More documentation of copyrights and licenses.
[refind] / libeg / Makefile
1 #
2 # libeg/Makefile
3 # Build control file for the libeg library
4 #
5
6 # This program is licensed under the terms of the GNU GPL, version 3,
7 # or (at your option) any later version.
8 # You should have received a copy of the GNU General Public License
9 # along with this program. If not, see <http://www.gnu.org/licenses/>.
10
11 SRCDIR = .
12
13 VPATH = $(SRCDIR)
14
15 LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include
16
17 OBJS = screen.o image.o text.o load_bmp.o load_icns.o lodepng.o lodepng_xtra.o
18 TARGET = libeg.a
19
20 all: $(TARGET)
21
22 include $(SRCDIR)/../Make.common
23
24 # EOF