summaryrefslogtreecommitdiff
path: root/src/modules/test/Makefile
blob: e571da9f8db0b2438c0696a83d8477ffca874f91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: clean, mrproper

CC = gcc
CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -I ../../include

LD = ld
LDFLAGS = -T ../../library/link.ld -L ../../library -Map main.map

Objects = main.o
Outfile = test.elf

all: $(Outfile)
	echo "* Done with $(Outfile)"

rebuild: mrproper all

$(Outfile): $(Objects)
	echo "* Linking $@..."
	$(LD) $(LDFLAGS) -o $@ $^

%.o: %.c
	$(CC) $(CFLAGS) -c $< -o $@

clean:
	echo "* Removing objects..."
	rm *.o || exit 0
	rm $(Objects) || exit 0

mrproper: clean
	rm *.elf || exit 0
	rm $(Outfile) || exit 0