diff options
| author | Mikhail Osipov <mike.osipov@gmail.com> | 2020-01-20 15:04:09 +0300 |
|---|---|---|
| committer | Mikhail Osipov <mike.osipov@gmail.com> | 2020-01-20 15:04:09 +0300 |
| commit | 200d9a378d87ecd1da7fc3d16c85ed1b39d65ea8 (patch) | |
| tree | b081e996d29c13381ea6220a65b85d0c0e9df209 /Makefile | |
| parent | 0edc91ad82182e2b61d67c50bfc63f077d8cf5ca (diff) | |
add Makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8b92448 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +SUBDIRS := cmd/tunnel cmd/tunneld +TARGETS := build clean + +.PHONY: default +default: build + +$(TARGETS): $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TARGETS) $(SUBDIRS) |
