• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1CXX_SOURCES := relative.cpp
2
3EXE := CompDirSymLink
4
5include Makefile.rules
6
7# Force relative filenames by copying it into the build directory.
8relative.cpp: main.cpp
9	cp -f $< $@
10