view recpt1/Makefile @ 36:65c8ac567074

cleaning up: - eliminate warnings - remove dangling white spaces - changed new line code in Makefile from CR+LF to LF
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Fri, 13 Mar 2009 14:32:44 +0900
parents b63f5c100e5a
children 9b36fdf7d5d0
line wrap: on
line source

PREFIX   = /usr/local
CC       = gcc
CPPFLAGS = -I../driver -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DB25
CFLAGS   = -O2 -g -pthread

PCSC_LIBS = `pkg-config libpcsclite --libs`
B25_LIBS = -larib25
LIBS     = $(PCSC_LIBS) $(B25_LIBS) -lm -lpthread
LDFLAGS  =

OBJS   = recpt1.o decoder.o
TARGET = recpt1
DEPEND = Makefile.dep

all: $(TARGET)

clean:
	rm -f $(OBJS) $(TARGET) $(DEPEND)

$(TARGET): $(OBJS)
	$(CC) $(LDFLAGS) -o $(TARGET) $(OBJS) $(LIBS)

$(DEPEND):
	$(CC) -MM $(OBJS:.o=.c) $(CPPFLAGS) > $@

install: $(TARGET)
	install -m 755 $(TARGET) $(PREFIX)/bin

-include Makefile.dep