Skip to content

Commit

Permalink
Add dummy makefile template. It doesn't do anything, but adding it no…
Browse files Browse the repository at this point in the history
…w makes future development easier.
  • Loading branch information
darbelo committed Oct 20, 2009
1 parent 6c2756e commit 84b9740
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions config/Makefile.in
@@ -0,0 +1,48 @@
INCLUDE_DIR = @includedir@@versiondir@
LIB_DIR = @libdir@@versiondir@
SRC_DIR = @srcdir@@versiondir@
TOOLS_DIR = @libdir@@versiondir@/tools/lib

LOAD_EXT = @load_ext@
O = @o@

PERL = @perl@
RM_F = @rm_f@
CP = @cp@
CAT = @cat@
PARROT = @bindir@/parrot@exe@
NQP = $(PARROT) $(LIB_DIR)/languages/nqp/nqp.pbc
PBC_TO_EXE = @bindir@/pbc_to_exe

#IF(darwin):# MACOSX_DEPLOYMENT_TARGET must be defined for OS X compilation/linking
#IF(darwin):export MACOSX_DEPLOYMENT_TARGET = @osx_version@

PARROT_DYNEXT = $(LIB_DIR)/dynext
PERL6GRAMMAR = $(LIB_DIR)/library/PGE/Perl6Grammar.pbc
PCT = $(LIB_DIR)/PCT.pbc

PMC_DIR = src/pmc

# This is a listing of all targets, that are meant to be called by users
help:
@echo ""
@echo "Following targets are available for the user:"
@echo ""
@echo " all: This is the default."
@echo "Testing:"
@echo " test: Run the test suite."
@echo ""
# @echo "Cleaning:"
# @echo " clean: Basic cleaning up."
# @echo " realclean: Removes also files generated by 'Configure.pl'"
# @echo " distclean: Removes also anything built, in theory"
# @echo ""
@echo "Misc:"
@echo " help: Print this help message."
@echo ""

# Local variables:
# mode: makefile
# End:
# vim: ft=make:

0 comments on commit 84b9740

Please sign in to comment.