Mercurial > mplayer.hg
view input/Makefile @ 21232:1e188b06ce98
Use the real name of the header file when guarding against double inclusion.
author | diego |
---|---|
date | Sat, 25 Nov 2006 19:41:52 +0000 |
parents | 68df3b19a160 |
children | 92b122592776 |
line wrap: on
line source
include ../config.mak LIBNAME = libinput.a SRCS=input.c ifeq ($(JOYSTICK),yes) SRCS += joystick.c endif ifeq ($(LIRC),yes) SRCS += lirc.c endif OBJS=$(SRCS:.c=.o) CFLAGS = -I. -I.. $(OPTFLAGS) .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend ifneq ($(wildcard .depend),) include .depend endif