SCM Repository
View of /branches/pure-cfg/src/lib/build/mk/Makefile.in
Parent Directory
|
Revision Log
Revision 1095 -
(download)
(annotate)
Wed May 4 18:05:00 2011 UTC (11 years, 1 month ago) by jhr
File size: 1256 byte(s)
Wed May 4 18:05:00 2011 UTC (11 years, 1 month ago) by jhr
File size: 1256 byte(s)
More work on runtime build infrastructure
# 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 |