Changeset 70810dc in rtems for cpukit/libmisc/untar/Makefile.am
- Timestamp:
- Feb 8, 2000, 10:33:25 PM (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- fb196c3c
- Parents:
- a976681e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/untar/Makefile.am
ra976681e r70810dc 1 ## 2 ## 3 ## 1 ## 2 ## $Id$ 3 ## 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 7 LIBNAME = libuntar-tmp 8 LIB = $ {ARCH}/${LIBNAME}.a8 LIB = $(ARCH)/$(LIBNAME).a 9 9 10 10 C_FILES = untar.c 11 C_O_FILES = $(C_FILES:%.c=$ {ARCH}/%.o)11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 12 12 13 13 H_FILES = untar.h 14 noinst_HEADERS = $(H_FILES)15 14 16 SRCS = $(C_FILES) $(H_FILES)17 15 OBJS = $(C_O_FILES) 18 16 19 17 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 20 include $(RTEMS_ROOT)/make/lib.cfg 21 22 PREINSTALL_FILES = \ 23 $(PROJECT_INCLUDE)/rtems \ 24 $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) 18 include $(top_srcdir)/../../../automake/lib.am 25 19 26 20 $(PROJECT_INCLUDE)/rtems: … … 33 27 # 34 28 35 $ {LIB}: ${OBJS}29 $(LIB): $(OBJS) 36 30 $(make-library) 37 31 38 all: ${ARCH} $(PREINSTALL_FILES) $(LIB) $(TMPINSTALL_FILES) 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \ 33 $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) 39 34 40 EXTRA_DIST += $(C_FILES) 35 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB) 36 37 .PRECIOUS: $(LIB) 38 39 EXTRA_DIST = README untar.c untar.h 41 40 42 41 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.