Changeset 603
- Timestamp:
- 01/03/12 09:38:22 (5 months ago)
- Files:
-
- branches/Derelict2/DerelictAllegro/Makefile (modified) (7 diffs)
- branches/Derelict2/DerelictAllegro/derelict/allegro/ttf.d (added)
- branches/Derelict2/linux.mak (modified) (1 diff)
- branches/Derelict2/mac.mak (modified) (1 diff)
- branches/Derelict2/win32.mak (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Derelict2/DerelictAllegro/Makefile
r602 r603 9 9 COD_LIB=$(LIB_PRE)DerelictAllegroACodec.$(LIB_EXT) 10 10 DIA_LIB=$(LIB_PRE)DerelictAllegroDialog.$(LIB_EXT) 11 TTF_LIB=$(LIB_PRE)DerelictAllegroTTF.$(LIB_EXT) 11 12 12 all : $(AL_LIB) $(IMG_LIB) $(FNT_LIB) $(AUD_LIB) $(COD_LIB) $(DIA_LIB) copylib13 all : $(AL_LIB) $(IMG_LIB) $(FNT_LIB) $(AUD_LIB) $(COD_LIB) $(DIA_LIB) $(TTF_LIB) copylib 13 14 DerelictAllegro : $(AL_LIB) copylib 14 15 DerelictAllegroImage : $(IMG_LIB) copylib … … 17 18 DerelictAllegroACodec : $(COD_LIB) copylib 18 19 DerelictAllegroDialog : $(DIA_LIB) copylib 20 DerelictAllegroTTF : $(TTF_LIB) copylib 19 21 20 22 AL_SRC= \ … … 37 39 DIA_SRC=\ 38 40 derelict/allegro/dialog.d 41 42 TTF_SRC=\ 43 derelict/allegro/ttf.d 39 44 40 45 $(AL_LIB) : $(DC)_build_al … … 44 49 $(COD_LIB) : $(DC)_build_cod 45 50 $(DIA_LIB) : $(DC)_build_dia 51 $(TTF_LIB) : $(DC)_build_ttf 46 52 47 53 # DMD ############################################## … … 63 69 dmd_build_dia: 64 70 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(DIA_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(DIA_LIB) 71 72 dmd_build_ttf: 73 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(TTF_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(TTF_LIB) 65 74 66 75 # LDC ############################################## … … 95 104 $(RM) *.o 96 105 106 ldc_build_ttf: 107 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(TTF_SRC) $(HD)/$(PACKAGE_PATH) 108 ar rcs $(TTF_LIB) *.o 109 $(RM) *.o 110 97 111 # GDMD/GDC ############################################## 98 112 gdmd_build_al: … … 114 128 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(DIA_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(DIA_LIB) 115 129 130 gdmd_build_ttf: 131 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(TTF_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(TTF_LIB) 132 116 133 copylib: 117 134 $(CP) *.$(LIB_EXT) $(LIB_DEST) branches/Derelict2/linux.mak
r545 r603 64 64 DerelictAllegroACodec : 65 65 $(DMAKE) -C DerelictAllegro DerelictAllegroACodec PLATFORM=linux 66 67 DerelictAllegroDialog : 68 $(DMAKE) -C DerelictAllegro DerelictAllegroDialog PLATFORM=linux 69 70 DerelictAllegroTTF : 71 $(DMAKE) -C DerelictAllegro DerelictAllegroTTF PLATFORM=linux 66 72 67 73 # There's only one DerelictFMODEX target branches/Derelict2/mac.mak
r545 r603 58 58 DerelictAllegroACodec : 59 59 $(DMAKE) -C DerelictAllegro DerelictAllegroACodec PLATFORM=mac 60 61 DerelictAllegroDialog : 62 $(DMAKE) -C DerelictAllegro DerelictAllegroDialog PLATFORM=mac 63 64 DerelictAllegroTTF : 65 $(DMAKE) -C DerelictAllegro DerelictAllegroTTF PLATFORM=mac 60 66 61 67 # There's only one DerelictFMODEX target branches/Derelict2/win32.mak
r602 r603 94 94 95 95 DerelictAllegroDialog : 96 cd DerelictAllegro 97 $(DMAKE) DerelictAllegroDialog PLATFORM=win32 DC=$(DC) 98 cd .. 99 100 DerelictAllegroTTF: 96 101 cd DerelictAllegro 97 102 $(DMAKE) DerelictAllegroDialog PLATFORM=win32 DC=$(DC)
