diff options
| author | nickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2020-04-20 23:36:15 +0000 |
|---|---|---|
| committer | nickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2020-04-20 23:36:15 +0000 |
| commit | a8fc11d8f9768bd0329fe0f42dfe26a888574ef6 (patch) | |
| tree | 1b38bf2e1c21aef126f01705f47896ae91315233 /packages/fcl-process | |
| parent | 5874ce8061e9f50187c5d2e29ea66e7e4a23605d (diff) | |
| download | fpc-a8fc11d8f9768bd0329fe0f42dfe26a888574ef6.tar.gz | |
* changed the object file format for z80-embedded and z80-zxspectrum to .rel
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/z80@44899 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fcl-process')
| -rw-r--r-- | packages/fcl-process/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/fcl-process/Makefile b/packages/fcl-process/Makefile index e508e96d27..aae0a06c11 100644 --- a/packages/fcl-process/Makefile +++ b/packages/fcl-process/Makefile @@ -827,6 +827,9 @@ STATICLIBEXT=.a else EXEEXT=.bin endif +ifeq ($(CPU_TARGET),z80) +OEXT=.rel +endif SHORTSUFFIX=emb endif ifeq ($(OS_TARGET),win16) @@ -835,6 +838,9 @@ STATICLIBEXT=.a SHAREDLIBEXT=.dll SHORTSUFFIX=w16 endif +ifeq ($(OS_TARGET),zxspectrum) +OEXT=.rel +endif ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),) FPCMADE=fpcmade.$(SHORTSUFFIX) ZIPSUFFIX=$(SHORTSUFFIX) |
