Skip to content

Commit

Permalink
Add deps stuff to Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewallen committed Nov 28, 2017
1 parent 8cef771 commit 13139e3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ default: all
$(BUILD):
mkdir -p $(BUILD)

all: $(BUILD)
all: $(BUILD) gitdeps
cd $(BUILD) && cmake ../
cd $(BUILD) && make

gitdeps:
simple-deps

clean:
rm -rf $(BUILD)
2 changes: 1 addition & 1 deletion sd_raw_dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "sd_raw.h"

#include "utility/dma.h"
// #include "utility/dma.h"

typedef struct sd_raw_dma_t {
sd_raw_t *sd;
Expand Down

0 comments on commit 13139e3

Please sign in to comment.