X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=mifare-read%2FMakefile;fp=mifare-read%2FMakefile;h=a48ba7a295141d75abdeb3a5cdc40b27e32e0dcd;hb=e3e3fa87a3f04582e62d217a27d38f613fdc4817;hp=0000000000000000000000000000000000000000;hpb=90524360eb192be01e1487bd45956fe0abc3b4f9;p=svn42.git diff --git a/mifare-read/Makefile b/mifare-read/Makefile new file mode 100755 index 0000000..a48ba7a --- /dev/null +++ b/mifare-read/Makefile @@ -0,0 +1,30 @@ +## +## mifare-read +## +## Copyright (C) 2009 Christian Pointner +## +## This file is part of mifare-read. +## +## mifare-read is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License version 3 as +## published by the Free Software Foundation. +## +## mifare-read is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with mifare-read. If not, see . +## + +EXECUTABLE := mifare-read + +all: $(EXECUTABLE) + +mifare-read: mifare-read.c + $(CC) $(CFLAGS) -lrfid -o $@ $< + +clean: + rm -f $(EXECUTABLE) +