mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
19 lines
391 B
Makefile
19 lines
391 B
Makefile
# mkvtoolnix - Makefile for MinGW
|
|
# because I was fed up fighting against libtool
|
|
|
|
# Put all the user changeable options into one file
|
|
include Makefile.mingw.options
|
|
|
|
#
|
|
# System settings. Don't change anything below here.
|
|
#
|
|
ifneq (,$(findstring aviclasses,$(AVILIB)))
|
|
SUBDIRS = avilib-0.6.10 aviclasses src
|
|
else
|
|
SUBDIRS = avilib-0.6.10 src
|
|
endif
|
|
|
|
all: subdirs
|
|
|
|
include Makefile.mingw.common
|