mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
19 lines
408 B
Makefile
19 lines
408 B
Makefile
#
|
|
# (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
|
|
TOP=$(shell pwd)
|
|
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -m68000 -Wa,-m68000 -Os
|
|
CPPFLAGS = -I$(TOP)/../libmacos -DARCH_M68K -I$(TOP)/../libstream
|
|
|
|
LIBRARY = libblock.a
|
|
|
|
SOURCES = block_close.c block_fstat.c block_lseek.c block_open.c block_read.c
|
|
|
|
HEADERS = libblock.h
|
|
|
|
all: $(LIBRARY)
|
|
|
|
include $(TOP)/../Rules.mk
|