Skip to content

Commit fe780ca

Browse files
Avoid creating the unused build directory
1 parent e669e3a commit fe780ca

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,11 @@ debug: all
3939

4040
# 64-bit Executable
4141
$(TARGET64): $(SRCS)
42-
@mkdir -p $(BUILD_DIR64)
4342
@echo "Building 64-bit executable..."
4443
$(CC64) $(SRCS) $(CFLAGS) $(LDFLAGS) -o $@
4544

4645
# 32-bit Executable
4746
$(TARGET32): $(SRCS)
48-
@mkdir -p $(BUILD_DIR32)
4947
@echo "Building 32-bit executable..."
5048
$(CC32) $(SRCS) $(CFLAGS) $(LDFLAGS) -o $@
5149

0 commit comments

Comments
 (0)