summaryrefslogblamecommitdiff
path: root/src/modules/test/Makefile
blob: 6dd9f8048deba6c63c02c52f334b9282e80cbe8f (plain) (tree)
1
2
3
4
5
6
7
8
9


                       
                                                                                                                

       
                                                                 

                
                  














                                     
                        
                          
                               

               

                               
 
.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 test.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 *.map || exit 0
	rm $(Objects) || exit 0

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