Annotation of freem/src/Makefile.Amiga68K, revision 1.1
1.1 ! snw 1: #
! 2: # *
! 3: # * *
! 4: # * *
! 5: # ***************
! 6: # * * * *
! 7: # * MUMPS *
! 8: # * * * *
! 9: # ***************
! 10: # * *
! 11: # * *
! 12: # *
! 13: #
! 14: # Makefile.Amiga68K
! 15: # Custom makefile for m68k-amigaos, where autotools don't yet work
! 16: # This should ultimately be removed
! 17: #
! 18: #
! 19: # Author: John P. Willis <jpw@coherent-logic.com>
! 20: # Copyright (C) 1998 MUG Deutschland
! 21: # Copyright (C) 2020 Coherent Logic Development LLC
! 22: #
! 23: #
! 24: # This file is part of FreeM.
! 25: #
! 26: # FreeM is free software: you can redistribute it and/or modify
! 27: # it under the terms of the GNU Affero Public License as published by
! 28: # the Free Software Foundation, either version 3 of the License, or
! 29: # (at your option) any later version.
! 30: #
! 31: # FreeM is distributed in the hope that it will be useful,
! 32: # but WITHOUT ANY WARRANTY; without even the implied warranty of
! 33: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! 34: # GNU Affero Public License for more details.
! 35: #
! 36: # You should have received a copy of the GNU Affero Public License
! 37: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
! 38: #
! 39: #
! 40:
! 41: CC = m68k-amigaos-gcc
! 42: LD = m68k-amigaos-ld
! 43: CFLAGS = -ggdb -O0 -DNEWSTACK -DHACK_NOXLATE -noixemul
! 44:
! 45: OBJS = frmgbl.o iniconf.o sighnd.o init.o expr.o global.o mlib.o namespace.o operator.o \
! 46: service.o ssvn.o ssvn_character.o ssvn_device.o ssvn_display.o \
! 47: ssvn_event.o ssvn_global.o ssvn_job.o ssvn_lock.o ssvn_routine.o \
! 48: ssvn_system.o ssvn_window.o ssvn_z.o ssvn_zos.o strings.o symtab.o \
! 49: views.o xecline.o transact.o iftab.o journal.o merge.o mappings.o \
! 50: mumps.o
! 51:
! 52: all: freem
! 53:
! 54: freem: $(OBJS)
! 55: $(CC) $(CFLAGS) $(OBJS) -o freem
! 56:
! 57: clean:
! 58: rm -f $(OBJS) freem
! 59:
! 60: .PHONY: all clean
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>