Changeset 245 for trunk/src/helpers/makefile
- Timestamp:
- Feb 2, 2003, 9:22:17 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/makefile
r243 r245 89 89 !include helpers_pre.in 90 90 91 # The main target:92 # If we're called from the main makefile, MAINMAKERUNNING is defined,93 # and we'll set $(OBJS) as our targets (which will go on).94 # Otherwise, we call the main makefile, which will again call ourselves later.95 96 all: \97 !ifndef MAINMAKERUNNING98 callmainmake99 @echo ----- Leaving $(MAKEDIR)100 !else101 $(OUTPUTDIR)\helpers.lib102 #$(OBJS)103 @echo ----- Leaving $(MAKEDIR)104 !endif105 106 91 plainc: \ 107 92 !ifndef MAINMAKERUNNING … … 123 108 @echo ----- Leaving $(MAKEDIR) 124 109 !endif 125 126 127 callmainmake:128 @echo $(MAKEDIR)\makefile: Recursing to main makefile.129 @cd $(PROJECT_BASE_DIR)130 @nmake131 @echo $(MAKEDIR)\makefile: Returned from main makefile. Done.132 133 # The "dep" target: run fastdep on the sources.134 # "nmake dep" gets called from src\makefile if nmake dep135 # is running on the main makefile.136 dep:137 $(RUN_FASTDEP) *.c138 @echo ----- Leaving $(MAKEDIR)139 110 140 111 # Define the main dependency between the output HELPERS.LIB and … … 181 152 182 153 !include helpers_post.in 154 155 ALLTARGET = $(OUTPUTDIR)\helpers.lib 156 157 !include ..\..\make\targets.in 183 158 184 159 ###################################################
Note:
See TracChangeset
for help on using the changeset viewer.