head	1.7;
access;
symbols
	V1_6_7:1.7
	V1_6_6:1.7
	V1_6_5:1.7
	V1_6_4:1.7
	V1_6_3:1.7
	V1_6_2:1.6
	V1_6_1:1.6
	V1_6:1.6
	V1_5_2:1.6
	V1_4:1.5
	V1_3_3:1.4
	V1_3_1:1.3
	V1_3:1.3
	V1_2:1.1;
locks; strict;
comment	@# @;


1.7
date	2000.03.23.14.48.00;	author vandys;	state Exp;
branches;
next	1.6;

1.6
date	96.01.02.00.20.46;	author vandys;	state Exp;
branches;
next	1.5;

1.5
date	95.03.04.23.41.57;	author vandys;	state Exp;
branches;
next	1.4;

1.4
date	94.05.30.04.05.17;	author vandys;	state Exp;
branches;
next	1.3;

1.3
date	94.04.06.22.18.12;	author vandys;	state Exp;
branches;
next	1.2;

1.2
date	94.04.06.21.55.34;	author vandys;	state Exp;
branches;
next	1.1;

1.1
date	93.12.27.22.30.12;	author vandys;	state Exp;
branches;
next	;


desc
@Makefile
@


1.7
log
@Makefile reorg; include master source is in vsta/src.  Centralize
common parameters.
@
text
@COPTS=-DDEBUG
OBJS=main.o ibmrs232.o nec_bus.o ms_bus.o logi_bus.o ps2aux.o \
	mouse.o stat.o
OUT=mouse

include ../../../makefile.all

LIBS=-lusr -lc
TOBJS=test.o

mouse: $(OBJS)
	$(LD) $(LDFLAGS) -o mouse $(CRT0) $(OBJS) $(LIBS)

test: $(TOBJS) 
	$(LD) $(LDFLAGS) -o test $(CRT0) $(TOBJS) $(LIBS)

install: all
	strip mouse
	cp mouse $(ROOT)/boot
@


1.6
log
@Tidy
@
text
@d1 1
a1 8
CC=gcc
LD=ld
INCLUDES=-I../../../../include
CFLAGS=-DDEBUG $(INCLUDES) -O
LDFLAGS=-L../../../lib
LIBS=-lusr -lc
CRT0=../../../lib/crt0.o

d4 1
a4 1
TOBJS=test.o
d6 1
a6 2
.c.o:
	$(CC) $(CFLAGS) -c $*.c
d8 2
a9 4
all: mouse

test: $(TOBJS) 
	$(LD) $(LDFLAGS) -e start -o test $(CRT0) $(TOBJS) $(LIBS)
d12 1
a12 1
	$(LD) $(LDFLAGS) -e start -o mouse $(CRT0) $(OBJS) $(LIBS)
d14 2
a15 5
clean:
	rm -f mouse test

clobber: clean
	rm -f *.o
d19 1
a19 1
	cp mouse ../../../../boot
@


1.5
log
@The great src/ renaming
@
text
@d1 7
a7 4
CC        = gcc
LD        = ld
INCLUDES  = -I../../../../include
CFLAGS    = -DDEBUG $(INCLUDES) -O
d9 1
a9 5
LDFLAGS   = -L../../../lib
LIBS      = -lpio -lusr -lc
CRT0	  = ../../../lib/crt0.o

OBJS      = main.o ibmrs232.o nec_bus.o ms_bus.o logi_bus.o ps2aux.o \
d11 1
a11 1
TOBJS     = test.o libmouse.o
d16 1
a16 1
all: mouse test
@


1.4
log
@Add PS2, convert to syslog, convert to RS-232 server
@
text
@d3 1
a3 1
INCLUDES  = -I../../../include
d6 1
a6 1
LDFLAGS   = -L../../../libc
d8 1
a8 1
CRT0	  = ../../../libc/crt0.o
d33 1
a33 1
	cp mouse ../../../boot
@


1.3
log
@Get rid of @@objs; native VSTa build
@
text
@d10 2
a11 1
OBJS      = main.o ibmrs232.o nec_bus.o ms_bus.o logi_bus.o mouse.o stat.o
@


1.2
log
@Add clean, clobber, install targets
@
text
@d22 1
a22 1
	$(LD) $(LDFLAGS) -e start -o mouse $(CRT0) @@objs $(LIBS)
@


1.1
log
@Initial revision
@
text
@d6 1
a6 1
LDFLAGS   = -L../../../libc -L../../../lib
d25 8
a32 3
	del mouse
	del test
	del *.o
@
