Changeset 2709 for trunk/src/dinput
- Timestamp:
- Feb 10, 2000, 12:40:56 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/dinput/makefile
r2650 r2709 1 # $Id: makefile,v 1. 3 2000-02-05 01:56:38 sandervlExp $1 # $Id: makefile,v 1.4 2000-02-09 23:40:43 bird Exp $ 2 2 3 3 # … … 28 28 29 29 $(TARGET).dll: $(OBJS) $(TARGET).def 30 31 32 33 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/ole32.lib34 30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \ 31 $(PDWIN32_LIB)/kernel32.lib \ 32 $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) \ 33 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/ole32.lib 34 $(CP) $@ $(PDWIN32_BIN) 35 35 36 36 37 lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib 38 39 $(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib 40 $(CP) $** $@ 41 37 42 $(TARGET).lib: $(TARGET)exp.def 38 39 43 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def 44 $(CP) $@ $(PDWIN32_LIB) 40 45 41 46 $(TARGET)exp.def: $(TARGET).def 42 $(IMPDEF) $** $@ 47 $(IMPDEF) $** $@ 48 43 49 44 50 resource.asm: $(TARGET).rc 45 51 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc 46 52 47 resource.obj: resource.asm 53 54 dep: 55 $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \ 56 *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h 57 58 !ifndef NODEP 59 !include .depend 60 !endif 48 61 49 62 50 dinput.obj: dinput.cpp oslibinput.h 51 oslibinput.obj: oslibinput.cpp oslibinput.h $(PDWIN32_INCLUDE)\winkeyboard.h 52 dinputguid.obj: dinputguid.cpp 63 clean: 64 $(RM) *.obj *.lib *.dll *.map *.pch \ 65 $(PDWIN32_BIN)\$(TARGET).dll \ 66 $(PDWIN32_LIB)\$(TARGET).lib \ 67 $(TARGET)exp.def resource.asm 53 68 54 clean:55 $(RM) *.obj *.lib *.dll *.map *.pch56 $(RM) $(PDWIN32_BIN)\$(TARGET).dll57 $(RM) $(PDWIN32_LIB)\$(TARGET).lib58 59 60 61 62
Note:
See TracChangeset
for help on using the changeset viewer.