2018-12-12 10:14:31 +01:00
|
|
|
CC=gcc -O0 -g -nostdinc -ffreestanding -fno-builtin -Wall -w -m32 -I ./include -fno-pie -no-pie -c -o
|
2018-12-09 13:44:32 +01:00
|
|
|
LINK=ld -m elf_i386 -T linker.lds -n -o
|
|
|
|
SRCS= $(wildcard *.c)
|
|
|
|
EXECS= $(SRCS:.c=)
|
2018-12-12 12:31:30 +01:00
|
|
|
CONVERT=dos2unix
|
|
|
|
INDENT=indent -nhnl -l75 -ppi3 -ts8 -bls -nbc -di8 -nbad -nbap -nsob -i8 -bl -bli0 -ncdw -nce -cli8 -cbi0 -npcs -cs -saf -sai -saw -nprs -lp -npsl
|
|
|
|
REMOVE=rm -f
|
|
|
|
CHANGELF=elfedit --output-osabi FenixOS
|
|
|
|
CHANGEPERM=chmod 644
|
2018-12-09 13:44:32 +01:00
|
|
|
|
|
|
|
all: lib/libs.a $(EXECS)
|
2018-12-12 12:31:30 +01:00
|
|
|
sync
|
|
|
|
|
2018-12-12 12:37:19 +01:00
|
|
|
togit: clean indent
|
2018-12-09 13:44:32 +01:00
|
|
|
|
|
|
|
lib/libs.a:
|
|
|
|
make -C lib
|
|
|
|
|
|
|
|
%: %.c
|
|
|
|
$(CC) $@.o $<
|
|
|
|
$(LINK) $@ $@.o lib/libs.a
|
2018-12-12 12:31:30 +01:00
|
|
|
$(CHANGEPERM) $@
|
|
|
|
$(CHANGELF) $@
|
2018-12-09 13:44:32 +01:00
|
|
|
|
|
|
|
clean:
|
|
|
|
make -C lib clean
|
2018-12-12 12:31:30 +01:00
|
|
|
$(REMOVE) *.o
|
|
|
|
$(REMOVE) *.c~
|
|
|
|
find . -type f ! -perm /u=x -maxdepth 1 -regex '.+/\.?[^\.]+' -exec $(REMOVE) {} \;
|
|
|
|
sync
|
2018-12-09 13:44:32 +01:00
|
|
|
|
|
|
|
indent:
|
2018-12-12 12:31:30 +01:00
|
|
|
make -C lib indent
|
|
|
|
$(CHANGEPERM) *.c
|
|
|
|
$(CONVERT) *.c
|
|
|
|
$(INDENT) *.c
|
2018-12-12 12:37:19 +01:00
|
|
|
$(REMOVE) *.c~
|
2018-12-12 12:31:30 +01:00
|
|
|
sync
|