summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjacomi1999-01-25 18:35:13 +0000
committerjacomi1999-01-25 18:35:13 +0000
commitca51f6abf6debc1b6718f59129886fea04ee12b0 (patch)
treeb074cbd71c73bfa0d39a28f73e19cd8d28a653f6 /Makefile
parentf63e7d593f9a1ca8152ec8180ac052e75c892a60 (diff)
downloadirbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.zip
irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.gz
irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.bz2
irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.xz
new directory structure and data
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile48
1 files changed, 0 insertions, 48 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 54c7e1a..0000000
--- a/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# IRBOX, an Ivy driver for infra-red remote controls
-#
-# Copyright 1998-1999
-# Centre d'Etudes de la Navigation Aerienne
-#
-# Makefile
-#
-# Authors: Stephane Chatty <chatty@cenatoulouse.dgac.fr>
-#
-# $Id$
-#
-# Please refer to file version.h for the
-# copyright notice regarding this software
-#
-
-SHELL = /bin/sh
-CC = gcc
-
-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 = -I../../../libraries/ivy-c/src
-CLIBS = -I../../../libraries/ivy-c/src
-CFLAGS = $(CDEBUGFLAGS) $(CDEFS) $(COPTS) $(CINCS)
-LDFLAGS = $(COPTS) $(CLIBS)
-
-all: irbox
-
-irbox: $(OBJS)
- $(CC) $(LDFLAGS) -o irbox $(OBJS) -livy
-
-irdev.o: irdev.h
-
-irbox.o: irdev.h
-
-y.tab.h y.tab.c: gram.y
- yacc -d gram.y
-
-lex.yy.c: gram.l
- lex gram.l
-
-lex.yy.o: lex.yy.c y.tab.h
-
-clean:
- -/bin/rm -f *.a *.o *.out *.bak *.yy.* *.tab.* *.log irbox