mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2024-11-20 11:49:17 +01:00
Makefile: Add order-only prerequisite to OBJ_RELEASE and OBJ_DEBUG
This commit is contained in:
parent
13e09a3a2d
commit
e6e39390a3
4
Makefile
4
Makefile
@ -75,6 +75,8 @@ debug: before_debug out_debug after_debug
|
||||
out_debug: $(OBJ_DEBUG) $(DEP_DEBUG)
|
||||
$(LD) $(LDFLAGS_DEBUG) $(LIBDIR_DEBUG) $(OBJ_DEBUG) $(LIB_DEBUG) -o $(OUT_DEBUG)
|
||||
|
||||
$(OBJ_DEBUG): | before_debug
|
||||
|
||||
$(OBJDIR_DEBUG)/main.o: main.cpp
|
||||
$(CXX) $(CFLAGS_DEBUG) $(VERSION) $(INC_DEBUG) -c main.cpp -o $(OBJDIR_DEBUG)/main.o
|
||||
|
||||
@ -123,6 +125,8 @@ release: before_release out_release after_release
|
||||
out_release: $(OBJ_RELEASE) $(DEP_RELEASE)
|
||||
$(LD) $(LDFLAGS_RELEASE) $(LIBDIR_RELEASE) $(OBJ_RELEASE) $(LIB_RELEASE) -o $(OUT_RELEASE)
|
||||
|
||||
$(OBJ_RELEASE): | before_release
|
||||
|
||||
$(OBJDIR_RELEASE)/main.o: main.cpp
|
||||
$(CXX) $(CFLAGS_RELEASE) $(VERSION) $(INC_RELEASE) -c main.cpp -o $(OBJDIR_RELEASE)/main.o
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user