minix/drivers/printer/Makefile

42 lines
724 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for Centronics printer driver (PRINTER)
DRIVER = printer
# directories
u = /usr
i = $u/include
s = $i/sys
m = $i/minix
b = $i/ibm
d = $u/src/drivers
# programs, flags, etc.
CC = exec cc
CFLAGS = -I$i
LDFLAGS = -i
LIBS = -lsys -lutils
OBJ = printer.o
# build local binary
all build: $(DRIVER)
$(DRIVER): $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
2005-06-24 18:21:54 +02:00
# install -S 64w $(DRIVER)
2005-04-21 16:53:53 +02:00
# install with other drivers
install: /usr/sbin/drivers/$(DRIVER)
/usr/sbin/drivers/$(DRIVER): $(DRIVER)
2005-06-24 18:21:54 +02:00
install -o root -c $? $@
# install -o root -cs $? $@
2005-04-21 16:53:53 +02:00
# clean up local files
clean:
rm -f *.o *.bak $(DRIVER)
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