From fb242b482a81baa20d5cb4b8a563880b16aebdee Mon Sep 17 00:00:00 2001 From: chatty Date: Mon, 25 Jan 1999 17:48:34 +0000 Subject: Prepared for version 1.0: - headers updated - renamed irman.c into irbox.c - added options at launch - added functions to read tables from a directory and its index - created a utility for creating tables - created files for launch at boot time --- Makefile | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 92f2b98..54c7e1a 100644 --- a/Makefile +++ b/Makefile @@ -1,29 +1,36 @@ # -# IRBOX, an Ivy driver for infra-red remote controls +# IRBOX, an Ivy driver for infra-red remote controls # -# Copyright 1998-1999 -# Centre d'Etudes de la Navigation Aerienne +# Copyright 1998-1999 +# Centre d'Etudes de la Navigation Aerienne # -# Makefile +# Makefile # -# $Id$ +# Authors: Stephane Chatty +# +# $Id$ +# +# Please refer to file version.h for the +# copyright notice regarding this software # SHELL = /bin/sh CC = gcc -SRCS = irdev.c irtable.c irman.c -OBJS = irdev.o irtable.o lex.yy.o y.tab.o irman.o +SRCS = irdev.c irtable.c irbox.c +OBJS = irdev.o irtable.o lex.yy.o y.tab.o irbox.o CDEFS = COPTS = -g -Wall -CINCS = +CINCS = -I../../../libraries/ivy-c/src +CLIBS = -I../../../libraries/ivy-c/src CFLAGS = $(CDEBUGFLAGS) $(CDEFS) $(COPTS) $(CINCS) +LDFLAGS = $(COPTS) $(CLIBS) -all: irman +all: irbox -irman: $(OBJS) - $(CC) $(CFLAGS) -o irbox $(OBJS) -L../IVY_C/src -livy +irbox: $(OBJS) + $(CC) $(LDFLAGS) -o irbox $(OBJS) -livy irdev.o: irdev.h -- cgit v1.1