mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-24 01:38:06 +11:00
9216057db8
I implement the screen using XCB which is much more friendly than z80e's SDL+CMake for development machines that want to install minimal dependencies (for example, a port-less OpenBSD rig).
7 lines
160 B
Makefile
7 lines
160 B
Makefile
OBJS = ti84.o t6a04.o kbd.o ../../emul.o ../../libz80/libz80.o
|
|
CFLAGS += `pkg-config --cflags xcb`
|
|
|
|
ti84: $(OBJS)
|
|
$(CC) `pkg-config --libs xcb` $(OBJS) -o $@
|
|
|