Skip to content

Commit

Permalink
small fix for Makefile
Browse files Browse the repository at this point in the history
This fails if for example only hairtunes.c was changed but not alac.c.
  • Loading branch information
albertz committed Apr 15, 2011
1 parent 2ac93d7 commit 19d330e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -6,7 +6,7 @@ PAUFLAGS:=-lportaudio
all: hairtunes

hairtunes: hairtunes.c alac.c
$(CC) $(CFLAGS) $(PKGFLAGS) $(LDFLAGS) $? -o $@
$(CC) $(CFLAGS) $(PKGFLAGS) $(LDFLAGS) hairtunes.c alac.c -o $@

clean:
-@rm -rf hairtunes
Expand Down

0 comments on commit 19d330e

Please sign in to comment.