Skip to content

Commit

Permalink
[FIXUP] more
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Apr 8, 2024
1 parent 41828f1 commit 4cce40c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ $(DLL): $(DLL_OBJS) $(COMMON_OBJS)
$(CC) -bundle -o $(DLL) $(ARCHS) $(DLL_OBJS) $(COMMON_OBJS) $(LIBS)

install: all
$(info Install into: EXE_OUTPUT_DIR:$(EXE_OUTPUT_DIR) LIB_OUTPUT_DIR:$(LIB_OUTPUT_DIR))
mkdir -p $(EXE_OUTPUT_DIR)
mv $(EXEC) $(EXE_OUTPUT_DIR)
mkdir -p $(LIB_OUTPUT_DIR)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,11 @@ $(RES): $(PROGRAM_NAME).rc
rc -r -fo $(RES) eclipse.rc

install: all
mkdir -p $(EXE_OUTPUT_DIR)
move /y $(EXEC) $(EXE_OUTPUT_DIR)"
move /y $(CONSOLE) $(EXE_OUTPUT_DIR)"
mkdir -p $(LIB_OUTPUT_DIR)
@echo Move '$(EXEC)' and '$(CONSOLE)' into $(EXE_OUTPUT_DIR)
-1cmd /c "mkdir $(EXE_OUTPUT_DIR)"
move /y $(EXEC) $(EXE_OUTPUT_DIR)
move /y $(CONSOLE) $(EXE_OUTPUT_DIR)
-1cmd /c "mkdir $(LIB_OUTPUT_DIR)"
del $(LIB_OUTPUT_DIR)\eclipse_*.dll
move /y $(DLL) $(LIB_OUTPUT_DIR)
del $(MAIN_OBJS) $(MAIN_CONSOLE_OBJS) $(DLL_OBJS) $(COMMON_OBJS) $(RES) eclipse_*.exp eclipse_*.lib
Expand Down

0 comments on commit 4cce40c

Please sign in to comment.