summaryrefslogtreecommitdiff
path: root/makefile.lnx
diff options
context:
space:
mode:
authorukw2010-06-09 00:03:03 +0000
committerukw2010-06-09 00:03:03 +0000
commitb5ea7869b5946d1dcf8a586d8e0d081cde940989 (patch)
tree15cb032350ec58fdc76e7195ec3879af62951b6a /makefile.lnx
parent51a59cc113b079d6ff0db111421e2f8e279f34fb (diff)
downloadirmp-b5ea7869b5946d1dcf8a586d8e0d081cde940989.zip
Version 1.6.0: added FDC protocol, corrected DENON timing
git-svn-id: svn://mikrocontroller.net/irmp@21 aeb2e35e-bfc4-4214-b83c-9e8de998ed28
Diffstat (limited to 'makefile.lnx')
-rw-r--r--makefile.lnx17
1 files changed, 13 insertions, 4 deletions
diff --git a/makefile.lnx b/makefile.lnx
index 8f9bcd3..3b774d4 100644
--- a/makefile.lnx
+++ b/makefile.lnx
@@ -7,12 +7,21 @@
#
# Copyright (c) 2010 Frank Meyer - frank(at)fli4l.de
#
-# $Id: makefile.lnx,v 1.3 2010/05/26 08:34:30 fm Exp $
+# $Id: makefile.lnx,v 1.5 2010/06/08 23:34:14 fm Exp $
#----------------------------------------------------------------------------
-all: irmp irsnd
+all: irmp irmp-15kHz irsnd irsnd-15kHz
irmp: irmp.c irmp.h irmpconfig.h
- cc -Wall irmp.c -o irmp
+ cc -Wall -DF_INTERRUPTS=10000 irmp.c -o irmp
+
+irmp-15kHz: irmp.c irmp.h irmpconfig.h
+ cc -Wall -DF_INTERRUPTS=15000 irmp.c -o irmp-15kHz
irsnd: irsnd.c irsnd.h irmp.h irsndconfig.h
- cc -Wall irsnd.c -o irsnd
+ cc -Wall -DF_INTERRUPTS=10000 irsnd.c -o irsnd
+
+irsnd-15kHz: irsnd.c irsnd.h irmp.h irsndconfig.h
+ cc -Wall -DF_INTERRUPTS=15000 irsnd.c -o irsnd-15kHz
+
+clean:
+ rm -f irmp irmp-15kHz irsnd irsnd-15kHz