diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2023-07-23 11:48:57 -0230 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2023-07-23 11:48:57 -0230 |
| commit | c38cbaf0f74c51602284c48fd27edaefe0ec7013 (patch) | |
| tree | 0f580b299727b7babe10c8e320b8344d11d4c636 /Makefile | |
| parent | a1e02a94f69f06af62af137212da1534c460c756 (diff) | |
| download | pfc-c38cbaf0f74c51602284c48fd27edaefe0ec7013.zip | |
add 'run' target to makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,6 +6,9 @@ build: go test gofmt -l -s -w . +run: build + ./pfc + clean: rm -f pfc @@ -21,4 +24,4 @@ uninstall: rm -f ${DESTDIR}${PREFIX}/bin/pfc \ ${DESTDIR}${MANPREFIX}/man1/pfc.1 -.PHONY: build install uninstall +.PHONY: build run install uninstall |