mirror of
https://github.com/mtheall/ftpd.git
synced 2024-11-23 17:49:48 +00:00
14 lines
191 B
Makefile
14 lines
191 B
Makefile
.PHONY: all clean linux
|
|
|
|
export VERSION := 2.2
|
|
|
|
all:
|
|
@$(MAKE) -f Makefile.3ds
|
|
|
|
linux:
|
|
@$(MAKE) -f Makefile.linux
|
|
|
|
clean:
|
|
@$(MAKE) -f Makefile.3ds clean
|
|
@$(MAKE) -f Makefile.linux clean
|