File: Makefile

package info (click to toggle)
emile 0.10-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,716 kB
  • ctags: 2,737
  • sloc: ansic: 18,908; makefile: 726; asm: 622; sh: 2
file content (24 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
#  (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
#

TOP	= $(shell pwd)

CFLAGS	= -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -m68020 -Wa,-m68020 -Os
CPPFLAGS	= -I$(TOP) -DARCH_M68K

LIBRARY = libmacos.a

SOURCES = display_properties.S \
	  CloseDriver.c OpenDriver.c SerGetBuf.c

HEADERS = libmacos.h \
	  macos/devices.h macos/errors.h macos/events.h macos/files.h \
	  macos/gestalt.h macos/init.h macos/lowmem.h \
	  macos/memory.h macos/osutils.h macos/quickdraw.h macos/romdefs.h \
	  macos/scsi.h macos/serial.h macos/slotmanager.h macos/traps.h \
	  macos/types.h macos/video.h

all: $(LIBRARY)

include $(TOP)/../Rules.mk