cos2000v2/programs/lib/makefile

43 lines
830 B
Makefile
Raw Normal View History

CC=gcc -O0 -g -nostdinc -ffreestanding -fno-builtin -Wall -w -m32 -F elf-i386 -fno-pie -no-pie -I ../include
LINK=ld -m elf_i386 -r -o
SRCS= $(wildcard *.c)
OBJS= $(SRCS:.c=.o)
ARCH=ar rcs
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
CHANGEPERM=chmod 644
SYNC=sync
all: libs.a
$(SYNC)
2018-12-12 12:37:19 +01:00
togit: clean indent
libs.a:libs.o
$(ARCH) $@ $^
libs.o:$(OBJS)
$(LINK) libs.o $(OBJS)
.o: .c
$(CC) $^
clean:
$(REMOVE) *.o
$(REMOVE) *.c~
$(REMOVE) *.a
$(SYNC)
indent:
$(CHANGEPERM) *.c
$(CONVERT) *.c
$(INDENT) *.c
2018-12-12 12:37:19 +01:00
$(REMOVE) *.c~
$(CHANGEPERM) ../include/*.h
$(CONVERT) ../include/*.h
$(INDENT) ../include/*.h
2018-12-12 12:37:19 +01:00
$(REMOVE) ../include/*.h~
$(SYNC)