Changeset 606
- Timestamp:
- 01/04/12 05:21:06 (5 months ago)
- Files:
-
- branches/Derelict2/DerelictAllegro/Makefile (modified) (7 diffs)
- branches/Derelict2/DerelictAllegro/derelict/allegro/primitives.d (added)
- branches/Derelict2/win32.mak (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Derelict2/DerelictAllegro/Makefile
r603 r606 10 10 DIA_LIB=$(LIB_PRE)DerelictAllegroDialog.$(LIB_EXT) 11 11 TTF_LIB=$(LIB_PRE)DerelictAllegroTTF.$(LIB_EXT) 12 PRM_LIB=$(LIB_PRE)DerelictAllegroPrimitives.$(LIB_EXT) 12 13 13 all : $(AL_LIB) $(IMG_LIB) $(FNT_LIB) $(AUD_LIB) $(COD_LIB) $(DIA_LIB) $(TTF_LIB) copylib14 all : $(AL_LIB) $(IMG_LIB) $(FNT_LIB) $(AUD_LIB) $(COD_LIB) $(DIA_LIB) $(TTF_LIB) $(PRM_LIB) copylib 14 15 DerelictAllegro : $(AL_LIB) copylib 15 16 DerelictAllegroImage : $(IMG_LIB) copylib … … 19 20 DerelictAllegroDialog : $(DIA_LIB) copylib 20 21 DerelictAllegroTTF : $(TTF_LIB) copylib 22 DerelictAllegroPrimitives : $(PRM_LIB) copylib 21 23 22 24 AL_SRC= \ … … 42 44 TTF_SRC=\ 43 45 derelict/allegro/ttf.d 46 47 PRM_SRC=\ 48 derelict/allegro/primitives.d 44 49 45 50 $(AL_LIB) : $(DC)_build_al … … 50 55 $(DIA_LIB) : $(DC)_build_dia 51 56 $(TTF_LIB) : $(DC)_build_ttf 57 $(PRM_LIB) : $(DC)_build_prm 52 58 53 59 # DMD ############################################## … … 72 78 dmd_build_ttf: 73 79 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(TTF_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(TTF_LIB) 80 81 dmd_build_prm: 82 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(PRM_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(PRM_LIB) 74 83 75 84 # LDC ############################################## … … 109 118 $(RM) *.o 110 119 120 ldc_build_prm: 121 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(PRM_SRC) $(HD)/$(PACKAGE_PATH) 122 ar rcs $(PRM_LIB) *.o 123 $(RM) *.o 124 111 125 # GDMD/GDC ############################################## 112 126 gdmd_build_al: … … 131 145 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(TTF_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(TTF_LIB) 132 146 147 gdmd_build_prm: 148 $(DC) $(DFLAGS) $(DFLAGS_REQ) $(PRM_SRC) $(HD)/$(PACKAGE_PATH) $(OF)$(PRM_LIB) 149 133 150 copylib: 134 151 $(CP) *.$(LIB_EXT) $(LIB_DEST) branches/Derelict2/win32.mak
r603 r606 101 101 cd DerelictAllegro 102 102 $(DMAKE) DerelictAllegroDialog PLATFORM=win32 DC=$(DC) 103 cd .. 104 105 DerelictAllegroPrimitives: 106 cd DerelictAllegro 107 $(DMAKE) DerelictAllegroPrimitives PLATFORM=win32 DC=$(DC) 103 108 cd .. 104 109
