You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
206 B
Makefile

default:; @cat INSTALL
all: mingw cygwin
mingw:; $(MAKE) -C w32api ex.dll
cygwin:; $(MAKE) -C posix T=ex.dll ex.dll
linux:; $(MAKE) -C posix ex.so
clean:
$(MAKE) -C posix clean
$(MAKE) -C w32api clean