SCM Repository
View of /branches/vis12/src/lib/build/mk/Makefile.in
Parent Directory
|
Revision Log
Revision 1115 -
(download)
(annotate)
Thu May 5 04:42:18 2011 UTC (9 years, 9 months ago) by jhr
Original Path: trunk/src/lib/build/mk/Makefile.in
File size: 1256 byte(s)
Thu May 5 04:42:18 2011 UTC (9 years, 9 months ago) by jhr
Original Path: trunk/src/lib/build/mk/Makefile.in
File size: 1256 byte(s)
More merging of pure-cfg back into trunk
# Makefile # # COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) # All rights reserved. # # Generic makefile for the runtime system libraries. This file is used to # create the Makefile.in files for rt-c-f, rt-c-f-debug, etc. # # @configure_input@ # #### Start of system configuration section. #### # # directories for the install target # PREFIX = @prefix@ INSTALL_BINDIR = $(PREFIX)/bin INSTALL_HEAPDIR = $(INSTALL_BINDIR)/.heap INSTALL_LIBDIR = $(PREFIX)/lib INSTALL_INCDIR = $(PREFIX)/include # # directories for the local-install target # SRCDIR = @DIDEROT_ROOT@/src LIBDIR = @DIDEROT_ROOT@/lib BINDIR = @DIDEROT_ROOT@/bin INSTALL = @INSTALL@ SHELL = @SHELL@ @SET_MAKE@ #### End of system configuration section. #### # the target build options # BUILD_OPTIONS = @BUILD_OPTIONS@ # target-platform specific sources # TARGET_SRCS = $(wildcard $(SRCDIR)/lib/@TARGET_PLATFORM@/*.c) # the target library name # TARGET = diderot-@BUILD_TARGET@.o .PHONY: build local-install install build: $(TARGET) local-install: $(TARGET) $(INSTALL) $(TARGET) $(LIBDIR)/$(TARGET) install: $(TARGET) $(INSTALL) $(TARGET) $(INSTALL_LIBDIR)/$(TARGET) # Include common definitions for run-time builds # include ../mk/build.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |