Skip to content

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
alpheratz0 committed Jul 26, 2022
1 parent 4d71fae commit a15f41c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ COMMON_CFLAGS= -Wall -Wextra -std=c99 -pedantic
CFLAGS+= `pkg-config --cflags sdl2` $(COMMON_CFLAGS)
COMMON_LIBS= -lm
LIBS= `pkg-config --libs sdl2` $(COMMON_LIBS)
PREFIX?= /usr/local/
PREFIX?= /usr/local
INSTALL?= install

.PHONY: all
Expand All @@ -29,7 +29,7 @@ clean:

.PHONY: install
install: all
$(INSTALL) -d $(DESTDIR)/$(PREFIX)/bin
$(INSTALL) -C ./sowon $(DESTDIR)/$(PREFIX)/bin
$(INSTALL) -d $(DESTDIR)/$(PREFIX)/man/man6
$(INSTALL) -C docs/sowon.6.gz $(DESTDIR)/$(PREFIX)/man/man6
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -C ./sowon $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -d $(DESTDIR)$(PREFIX)/man/man6
$(INSTALL) -C docs/sowon.6.gz $(DESTDIR)$(PREFIX)/man/man6

0 comments on commit a15f41c

Please sign in to comment.