1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
include @RPLAY_TOP@/Makefile.config
srcdir = @srcdir@
VPATH = @srcdir@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS= @srcdir@/../mkinstalldirs
TARGET= rplay.h
all:
$(TARGET):
install: $(TARGET)
$(MKINSTALLDIRS) $(includedir)
$(INSTALL_DATA) @srcdir@/$(TARGET) $(includedir)/$(TARGET)
uninstall:
$(RM) $(includedir)/$(TARGET)
clean:
$(RM) *~ *.bak *.orig
distclean: clean
$(RM) Makefile config.h
tags:
TAGS:
etags:
depend:
|