stmos/initrd/Makefile

13 lines
224 B
Makefile
Raw Normal View History

2018-11-29 20:43:06 -05:00
##
# A simple Makefile for building executables loadable by stmos.
#
ARCH = arm-stmos-
CC = gcc -mcpu=cortex-m4 -mthumb -fsigned-char
CFLAGS = -Os -fPIE
all:
2018-11-29 20:43:06 -05:00
@$(ARCH)$(CC) $(CFLAGS) init.c -o init
@arm-stmos-strip init