diff options
author | Marvin Borner | 2021-03-26 21:55:50 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-26 22:02:20 +0100 |
commit | 05498860e8f7b1e8bb27880bc7526de026694804 (patch) | |
tree | 3bddf16e9439a950a3810d45e42a5cefdbcb7663 /libs/libgui/Makefile | |
parent | a96e9c4c858d47f61b89d879aa0ce6a02bdacb38 (diff) |
Renamed libs
Cleaner and more flexible.
Diffstat (limited to 'libs/libgui/Makefile')
-rw-r--r-- | libs/libgui/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libs/libgui/Makefile b/libs/libgui/Makefile new file mode 100644 index 0000000..3e2b0b2 --- /dev/null +++ b/libs/libgui/Makefile @@ -0,0 +1,25 @@ +# MIT License, Copyright (c) 2020 Marvin Borner + +COBJS = psf.o \ + bmp.o \ + png.o \ + gfx.o \ + gui.o \ + msg.o +CC = ccache ../../cross/opt/bin/i686-elf-gcc +LD = ccache ../../cross/opt/bin/i686-elf-ld +AR = ccache ../../cross/opt/bin/i686-elf-ar + +CFLAGS = $(CFLAGS_DEFAULT) -I../ -I../libc/inc/ -Duserspace + +all: libgui + +%.o: %.c + @$(CC) -c $(CFLAGS) $< -o $@ + +libgui: $(COBJS) + @mkdir -p ../../build/ + @$(AR) rcs ../../build/libgui.a $+ + +clean: + @find . -name "*.o" -type f -delete |