Skip to content

Commit

Permalink
Fix Makefile target dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeyeager committed Dec 28, 2015
1 parent dfe65c8 commit 33fbccd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
@@ -1,6 +1,6 @@
all: test
all: build

build: clean
build:
mkdir build && cd build && cmake ../src && make

32: clean32
Expand All @@ -21,8 +21,8 @@ clean64:
test: build
cd build && make test

clean:
rm -rf build lib lib64
clean: clean32 clean64
rm -rf build

dist_prepare: test
mkdir -p usr/share/doc/stderred && cp README.md usr/share/doc/stderred/
Expand Down

0 comments on commit 33fbccd

Please sign in to comment.