diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2021-03-04 11:39:06 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2021-03-04 11:39:06 +0300 |
commit | 80eb56304c48f273adca0e11042b8501ab9f5ccc (patch) | |
tree | 931b875b34592d03557c37e8c5087cc9610e6826 /Makefile | |
parent | 4c6ef635d444813cf3c3b81059d50028e94af06b (diff) | |
download | takethis-80eb56304c48f273adca0e11042b8501ab9f5ccc.tar takethis-80eb56304c48f273adca0e11042b8501ab9f5ccc.tar.xz takethis-80eb56304c48f273adca0e11042b8501ab9f5ccc.zip |
Fixy fix.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -62,9 +62,9 @@ $(GAME): $(OBJ) $(BUILD)/%.o: $(SRCDIR)/%.c $(COMPILE) $(CFLAGS) -c $< -o $@ -# Create build directories, if no such: +# Create build directory, if no such: $(BUILD): - mkdir -p $@ + mkdir $@ # Generate dependency file, adding corresponding build prefixes: $(DEPS): $(SRC) $(HEADERS) |