Changeset 238 for trunk/makefile
- Timestamp:
- Aug 9, 2005, 7:11:38 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile
r211 r238 1 # makefile - build fm/21 # makefile - build all fm/2 components 2 2 # $Id$ 3 3 4 # 21 Nov 03 SHL Comments5 4 # 24 May 05 SHL Add clean and cleanobj target 6 5 # 16 Jun 05 SHL Workaround makeflags wierdness 6 # 18 Jul 05 SHL Add bitmap dependencies 7 # 20 Jul 05 SHL Add makeres support 7 8 8 9 # Environment: … … 12 13 BASE = fm3 13 14 14 ! INCLUDEmakefile_pre.mk15 !include makefile_pre.mk 15 16 16 ALL: DLL $(BASE) MAK 17 all: dll $(BASE) mak 17 18 18 DLL: 19 # Only update resources 20 res: 21 @echo Updating resources only 22 $(MAKE) /nologo /$(MAKEFLAGS) MAKERES=1 23 24 # make DLL components 25 26 dll: 19 27 cd dll 20 28 $(MAKE) /nologo /$(MAKEFLAGS) 21 29 cd .. 22 30 23 $(BASE): $(BASE).EXE \ 24 $(BASE).res 31 $(BASE): $(BASE).exe $(BASE).res 25 32 26 $(BASE).res: $(BASE).rc \ 27 $(BASE).h 33 $(BASE).res: $(BASE).rc $(BASE).h bitmaps\*.bmp 28 34 29 $(BASE).obj: $(BASE).c \ 30 $(BASE).h dll\version.h 35 $(BASE).obj: $(BASE).c $(BASE).h dll\version.h 31 36 32 MAK: *.mak 33 !$(MAKE) /NOLOGO /f $? 37 # make EXE compenents 38 39 mak: *.mak 40 !$(MAKE) /NOLOGO /$(MAKEFLAGS) /f $? 34 41 35 42 cleanobj: … … 49 56 -del fm3res.str 50 57 51 ! INCLUDEmakefile_post.mk58 !include makefile_post.mk 52 59 53 60 # The end
Note:
See TracChangeset
for help on using the changeset viewer.