Skip to content

Commit

Permalink
Change binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscasa95 committed Apr 24, 2022
1 parent e3c81a7 commit 1e45014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ INC=./src/*

# linux
.PHONY: default
default: pn_image
pn_image:
default: pn_imager
pn_imager:
$(CC) $(INC) $(CFLAGS) -o $@ $^

# windows
.PHONY: windows
windows: pn_image.exe
pn_image.exe:
windows: pn_imager.exe
pn_imager.exe:
$(MINGW) -o $@ $^ ${INC}

# both
Expand All @@ -26,4 +26,4 @@ all: default windows
# clean
.PHONY: clean
clean:
rm -f pn_image *.exe *.ppm
rm -f pn_imager *.exe *.ppm
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Just download the binaries or build it yourself and open the resulting `.ppm` fi

## Commandline Inputs

Use `pn_image` for Linux and `pn_image.exe` for Windows.
Use `pn_image` on Linux and `pn_image.exe` on Windows.

$ ./pn_image -h

Expand Down

0 comments on commit 1e45014

Please sign in to comment.