mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-13 21:00:35 +01:00
Handle .pas/.pp source extension differences also for dotted units
This commit is contained in:
parent
ed734996fc
commit
493b58d72b
@ -815,7 +815,7 @@ PORTS_DEPS=$(PORTSDIR)/ports.$(PORTSUNITEXT) \
|
||||
ports$(PPUEXT) : $(PORTS_DEPS)
|
||||
$(COMPILER) $(PORTS_OPT) $<
|
||||
|
||||
System.Ports$(PPUEXT) : $(NSINC)/System.Ports.pp $(PORTS_DEPS)
|
||||
System.Ports$(PPUEXT) : $(NSINC)/System.Ports.$(PORTSUNITEXT) $(PORTS_DEPS)
|
||||
$(COMPILER) $(PORTS_OPT) $<
|
||||
|
||||
#
|
||||
@ -914,8 +914,8 @@ DOS_DEPS=$(DOSDIR)/dos.$(DOSUNITEXT) $(INC)/filerec.inc $(INC)/textrec.inc \
|
||||
dos$(PPUEXT): $(DOS_DEPS)
|
||||
$(COMPILER) $(DOS_OPTS) $<
|
||||
|
||||
TP.DOS$(PPUEXT): $(NSINC)/TP.DOS.pp $(DOS_DEPS)
|
||||
$(COMPILER) $(DOS_OPTS) $<
|
||||
TP.DOS$(PPUEXT): $(NSINC)/TP.DOS.$(DOSUNITEXT) $(DOS_DEPS)
|
||||
$(COMPILER) $(DOS_OPTS) $(DOS_NS_OPTS) $<
|
||||
|
||||
MSMOUSE_DEPS=msmouse.pp $(SYSTEMUNIT)$(PPUEXT)
|
||||
|
||||
@ -1570,7 +1570,7 @@ OS2DEF_DEPS = $(OS2DIR)/os2def.pas $(SYSTEMUNIT)$(PPUEXT) \
|
||||
os2def$(PPUEXT) : $(OS2DEF_DEPS)
|
||||
$(COMPILER) $<
|
||||
|
||||
OS2Api.$(PPUEXT) : $(NSOS2DIR)/OS2Api..pas $(OS2DEF_DEPS)
|
||||
OS2Api.os2def$(PPUEXT) : $(NSOS2DIR)/OS2Api.os2def.pas $(OS2DEF_DEPS)
|
||||
$(COMPILER) -Fi$(OS2DIR) $<
|
||||
|
||||
DOSCALL2_DEPS = $(OS2DIR)/doscall2.pas $(DOSCALLSUNIT)$(PPUEXT) $(OS2DEFUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user