From 0118246b32fe0ccc5f289cc350f32fb935305959 Mon Sep 17 00:00:00 2001 From: chatty Date: Tue, 12 Jan 1999 12:58:18 +0000 Subject: Initial revision --- Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..40f9032 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ +# +# IRBOX, an Ivy driver for infra-red remote controls +# +# Copyright 1998-1999 +# Centre d'Etudes de la Navigation Aerienne +# +# Makefile +# +# $Id$ +# + +SHELL = /bin/sh +CC = gcc + +SRCS = irdev.c irbox.c +OBJS = irdev.o irbox.o + +CDEFS = +COPTS = -g -Wall -DDEBUG_RECEIVE +CINCS = +CFLAGS = $(CDEBUGFLAGS) $(CDEFS) $(COPTS) $(CINCS) + +all: irbox + +irbox: $(OBJS) + $(CC) $(CFLAGS) -o irbox $(OBJS) -L../IVY_C/src -livy + +irdev.o: irdev.h + +irbox.o: irdev.h + +clean: + -/bin/rm -f *.a *.o *.out *.bak *.log irbox -- cgit v1.1