diff options
author | Jordan Bracco <href@random.sh> | 2021-10-27 18:38:03 +0200 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2021-10-27 18:38:03 +0200 |
commit | 27eec8413540bfd11454cba6e35b0cc4daa5c5ad (patch) | |
tree | 405a35c02ccbc3adfb7cddd7f71bea8b2714b289 /Makefile |
🤷
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8700ffe --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +PROJECT = fib +PROJECT_DESCRIPTION = fib management in erlang +PROJECT_VERSION = 0.1.0 + +DEPS = procket inet_cidr inet_ext +dep_procket = git https://github.com/msantos/procket master +dep_inet_cidr = git https://github.com/benoitc/inet_cidr master +dep_inet_ext = git https://github.com/benoitc/inet_ext master + +CT_SUITES = fib_macos + +#UNAME_S := $(shell uname -s) +#ifeq ($(UNAME_S),Linux) +# OS_TYPE := linux +# include /etc/os-release +#endif +#ifeq (^(UNAME_S),FreeBSD) +# OS_TYPE := freebsd +# include /etc/os-release +#endif +#ifeq ($(UNAME_S),Darwin) +# OS_TYPE := macos +# VERSION_ID := $(shell sw_vers -productVersion) +#endif +#ERLC_OPTS = -DOS_TYPE=$(OS_TYPE) -DOS_VERSION_ID=$(OS_VERSION_ID) -Werror +debug_info +warn_export_vars +warn_shadow_vars +warn_obsolete_guard + +include erlang.mk |