Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
sowm: Fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Feb 20, 2020
1 parent a1c80d9 commit 7821aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ config.h:
cp config.def.h config.h

sowm:
$(CC) $(CFLAGS) $(LDFLAGS) -O3 -o sowm sowm.c -lX11
$(CC) -O3 $(CFLAGS) -lX11 $(LDFLAGS) -o sowm sowm.c

install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm
Expand Down

0 comments on commit 7821aac

Please sign in to comment.