Merge pull request #9 from lilrc/master

Fix install when the destination does not exist.
This commit is contained in:
Kristian Setälä 2017-11-27 09:58:46 +02:00 committed by GitHub
commit d023bd7f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ clean:
rm -f $(program) $(objects) rm -f $(program) $(objects)
install: $(program) install: $(program)
install $(program) $(DESTDIR)$(PREFIX)/bin install -D -t $(DESTDIR)$(PREFIX)/bin $(program)
dist: dist:
tar cfa $(program)-v1b.tar.gz Makefile README.md $(headers) $(sources) tar cfa $(program)-v1b.tar.gz Makefile README.md $(headers) $(sources)