917722cf70
This change adds the display(1) graphical user interface and desktop environment with basic windowing support and the graphical terminal(1) emulator along with integrations in chkblayout(1), chvideomode(1), sysinstall(8), sysupgrade(8), as well as the games and ports. Adopt the Aurora procedural wallpaper in display(1) and login(8). Remove the obsolete dispd. Juhani contributed keyboard and video mode APIs to the display protocol and other miscellaneous changes. dzwdz contributed the initial functioning window buttons, improved title bar, window tiling, and minor bug fixes Co-authored-by: Juhani Krekelä <juhani@krekelä.fi> Co-authored-by: dzwdz <kg67199@gmail.com>
36 lines
629 B
Makefile
36 lines
629 B
Makefile
SOFTWARE_MEANT_FOR_SORTIX=1
|
|
include ../build-aux/platform.mak
|
|
include ../build-aux/compiler.mak
|
|
include ../build-aux/dirs.mak
|
|
|
|
OPTLEVEL?=-g -O2
|
|
CFLAGS?=$(OPTLEVEL)
|
|
|
|
CFLAGS:=$(CFLAGS) -Wall -Wextra
|
|
CPPFLAGS:=$(CPPFLAGS) -Iinclude
|
|
|
|
LIBRARY=libui.a
|
|
|
|
OBJS=\
|
|
framebuffer.o \
|
|
pixel.o \
|
|
vgafont.o \
|
|
|
|
all: $(LIBRARY)
|
|
|
|
.PHONY: all install clean
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(LIBDIR)
|
|
cp $(LIBRARY) $(DESTDIR)$(LIBDIR)
|
|
mkdir -p $(DESTDIR)$(INCLUDEDIR)
|
|
cp -RTv include $(DESTDIR)$(INCLUDEDIR)
|
|
|
|
%.o: %.c
|
|
$(CC) -std=gnu11 $(CFLAGS) $(CPPFLAGS) -c $< -o $@
|
|
|
|
$(LIBRARY): $(OBJS)
|
|
$(AR) rcs $@ $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(LIBRARY) *.o *.a
|