Changeset 2709 for trunk/src/NTDLL
- Timestamp:
- Feb 10, 2000, 12:40:56 AM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/NTDLL/makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/makefile
r2650 r2709 1 # $Id: makefile,v 1.1 8 2000-02-05 02:05:00 sandervlExp $1 # $Id: makefile,v 1.19 2000-02-09 23:40:41 bird Exp $ 2 2 3 3 # … … 43 43 44 44 $(TARGET).dll: $(OBJS) $(TARGET).def 45 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/crtdll.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)46 $(CP) $@ $(PDWIN32_BIN)45 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/crtdll.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) 46 $(CP) $@ $(PDWIN32_BIN) 47 47 48 $(TARGET).LIB: $(TARGET)exp.def 49 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def 50 $(CP) $@ $(PDWIN32_LIB) 48 49 lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib 50 51 $(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib 52 $(CP) $** $@ 53 54 $(TARGET).lib: $(TARGET)exp.def 55 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def 56 $(CP) $@ $(PDWIN32_LIB) 51 57 52 58 $(TARGET)exp.def: $(TARGET).def 53 $(IMPDEF) $** $@ 59 $(IMPDEF) $** $@ 60 54 61 55 62 resource.asm: $(TARGET).rc 56 63 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc 57 64 58 resource.obj: resource.asm59 65 60 ntdll.obj: .\ntdll.cpp .\ntdll.h 66 dep: 67 $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \ 68 *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h 61 69 62 file.obj: .\file.cpp .\ntdll.h 70 !ifndef NODEP 71 !include .depend 72 !endif 63 73 64 nt.obj: .\nt.cpp .\ntdll.h65 66 om.obj: .\om.cpp .\ntdll.h67 68 reg.obj: .\reg.cpp .\ntdll.h69 70 rtl.obj: .\rtl.cpp .\ntdll.h71 72 rtlstr.obj: .\rtlstr.cpp .\ntdll.h73 74 sec.obj: .\sec.cpp .\ntdll.h75 76 sync.obj: .\sync.cpp .\ntdll.h77 78 time.obj: .\time.cpp .\ntdll.h79 80 initterm.obj: .\initterm.cpp81 82 crt.obj: .\crt.cpp .\ntdll.h83 84 unknown.obj: .\unknown.cpp .\ntdll.h85 86 exception.obj: .\exception.cpp .\ntdll.h87 88 arith64.obj: .\arith64.asm89 90 regfunc.obj: .\regfunc.asm91 92 qsort.obj: qsort.c93 74 94 75 clean: 95 $(RM) *.obj *.lib *.dll *.map *.pch96 $( RM) $(PDWIN32_LIB)\$(TARGET).lib97 $(RM) $(PDWIN32_BIN)\$(TARGET).dll76 $(RM) *.obj *.lib *.dll *.map *.pch \ 77 $(PDWIN32_LIB)\$(TARGET).lib $(PDWIN32_BIN)\$(TARGET).dll \ 78 resource.asm $(TARGET)exp.def 98 79
Note:
See TracChangeset
for help on using the changeset viewer.
