Skip to content

Commit

Permalink
add missing .PHONY rule
Browse files Browse the repository at this point in the history
Add a .PHONY rule indicating that "all" and "clean" are phony targets.
This correction was suggested by Stephen Paul Weber.
  • Loading branch information
ossguy committed May 25, 2009
1 parent b7f713e commit 496c748
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -20,6 +20,8 @@ CC = gcc
CFLAGS = -ansi -pedantic -Wall -Wextra -Werror
LDFLAGS = -lpcre

.PHONY: all clean

all: driver combine
driver: driver.o libbitconvert.a
driver.o: driver.c bitconvert.h
Expand Down

0 comments on commit 496c748

Please sign in to comment.