minix/drivers/tty/Makefile

46 lines
859 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for terminal driver (TTY)
DRIVER = tty
# directories
u = /usr
i = $u/include
s = $i/sys
m = $i/minix
b = $i/ibm
2005-06-28 16:56:30 +02:00
d = ..
2005-04-21 16:53:53 +02:00
# programs, flags, etc.
MAKE = exec make
CC = exec cc
CFLAGS = -I$i
LDFLAGS = -i
LIBS = -lsys -lutils -ltimers
OBJ = tty.o console.o vidcopy.o keyboard.o pty.o rs232.o
2005-04-21 16:53:53 +02:00
# build local binary
all build: $(DRIVER)
cd keymaps && $(MAKE) -$(MAKEFLAGS) $@
$(DRIVER): $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
install -S 256w $(DRIVER)
# install with other drivers
install: /usr/sbin/drivers/$(DRIVER)
cd keymaps && $(MAKE) -$(MAKEFLAGS) $@
/usr/sbin/drivers/$(DRIVER): $(DRIVER)
install -o root -cs $? $@
# clean up local files
clean:
cd keymaps && $(MAKE) -$(MAKEFLAGS) $@
rm -f $(DRIVER) *.o *.bak
2005-06-24 18:21:54 +02:00
depend:
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
2005-04-21 16:53:53 +02:00
2005-06-24 18:21:54 +02:00
# Include generated dependencies.
include .depend
2005-04-21 16:53:53 +02:00