aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-08 11:37:03 +0200
committerBad Diode <bd@badd10de.dev>2021-10-08 11:37:03 +0200
commitbaaef414186e60dbb127662d5f4ffab10ebf225e (patch)
tree0faa41605fa9e6348c1959e8b88b01a5f85ee4da /Makefile
parent96d27c2a3e1a0fa0878beb3f9cd02f4b4ed8fdbb (diff)
downloadbdl-baaef414186e60dbb127662d5f4ffab10ebf225e.tar.gz
bdl-baaef414186e60dbb127662d5f4ffab10ebf225e.zip
Add initial tokenizer
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8bd5560..0564240 100755
--- a/Makefile
+++ b/Makefile
@@ -34,9 +34,9 @@ else
34 CFLAGS += $(RELEASE_CFLAGS) 34 CFLAGS += $(RELEASE_CFLAGS)
35endif 35endif
36 36
37main: tools $(BUILD_DIR) $(ROM) $(BIN) 37main: $(BIN)
38 38
39$(BIN): $(SRC_MAIN) $(WATCH_SRC) 39$(BIN): $(SRC_MAIN) $(WATCH_SRC) $(BUILD_DIR)
40 $(CC) $(CFLAGS) $(LDFLAGS) -o $(BIN) $(SRC_MAIN) $(LDLIBS) 40 $(CC) $(CFLAGS) $(LDFLAGS) -o $(BIN) $(SRC_MAIN) $(LDLIBS)
41 41
42# Create build directory if needed. 42# Create build directory if needed.