Skip to content

Commit

Permalink
Reference common make cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Aug 15, 2020
1 parent e688e02 commit 16f4d7d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Common makefile commands & variables between projects
include .make/Makefile.common

## Not defined? Use default repo name which is the application
ifeq ($(REPO_NAME),)
REPO_NAME="twetch-bot"
endif

## Not defined? Use default repo owner
ifeq ($(REPO_OWNER),)
REPO_OWNER="tonicpow"
endif

.PHONY: clean

audit: ## Checks for vulnerabilities in dependencies
Expand Down

0 comments on commit 16f4d7d

Please sign in to comment.