Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Empty directories bin and doc not in git #2

Closed
aapo opened this issue Jun 15, 2014 · 1 comment
Closed

Empty directories bin and doc not in git #2

aapo opened this issue Jun 15, 2014 · 1 comment

Comments

@aapo
Copy link

aapo commented Jun 15, 2014

git clone + make is not working because there are no directories bin and doc.

Maybe something like:

diff --git a/Makefile b/Makefile
index c562378..031949f 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,12 @@ PROGRAMS = elfls objres rebind sstrip elftoc ebfc infect
 all: $(PROGRAMS)

 bin/%:
+       mkdir -p bin
        $(MAKE) -C$* $*
        cp $*/$* $@

 doc/%.1:
+       mkdir -p doc
        cp $*/$*.1 $@

 elfls: bin/elfls doc/elfls.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants