This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/Makefile

22 lines
323 B
Makefile
Raw Normal View History

# Common makefile -- loads make rules for each platform
OSTYPE=$(shell uname -s)
2017-04-21 14:56:42 -07:00
BUILD=build/$(OSTYPE)
ZTO=zto
ifeq ($(OSTYPE),Darwin)
include make-mac.mk
endif
ifeq ($(OSTYPE),Linux)
include make-linux.mk
endif
ifeq ($(OSTYPE),FreeBSD)
include make-bsd.mk
endif
ifeq ($(OSTYPE),OpenBSD)
include make-bsd.mk
endif