summaryrefslogtreecommitdiff
path: root/windows/mingw/Makefile
blob: e3efb9dfcd999618180c2a488fa31e38df4ba216 (plain)
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
# Makefile for lrexlib

MKFILES = \
  rex_gnu.mak     \
  rex_onig.mak    \
  rex_pcre.mak    \
  rex_spencer.mak \
  rex_tre.mak

LOOP = @for %%d in ($(MKFILES)) do $(MAKE) -f %%d

all: build test

build:
	$(LOOP)

test:
	$(LOOP) test

install:
	$(LOOP) install

clean:
	del *.o *.def *.dll

.PHONY: all build test install clean