29 lines
587 B
Makefile
Executable File
29 lines
587 B
Makefile
Executable File
CC=gcc -DCONFIG_X86_32 -I . -o
|
|
SRCS= $(wildcard *.c)
|
|
EXECS= $(SRCS:.c=)
|
|
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
|
|
|
|
all: $(EXECS)
|
|
sync
|
|
|
|
togit: clean indent
|
|
|
|
%: %.c
|
|
$(CC) $@ $<
|
|
clean:
|
|
$(REMOVE) *.o
|
|
$(REMOVE) *.c~
|
|
find . -maxdepth 1 -type f ! -name makefile -perm /u=x -exec $(REMOVE) {} \;
|
|
sync
|
|
|
|
indent:
|
|
$(CHANGEPERM) *.c
|
|
$(CONVERT) *.c
|
|
$(INDENT) *.c
|
|
$(REMOVE) *.c~
|
|
sync
|