~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/lib/Makefile.common

  • Committer: Pavel Rimsky
  • Date: 2010-02-20 20:54:53 UTC
  • mfrom: (292 head)
  • mto: This revision was merged to the branch mainline in revision 296.
  • Revision ID: pavel@pavel-laptop-20100220205453-70sim280j709dgp3
Synchronize with head.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
# Individual makefiles set:
34
34
#
35
 
#       USPACE_PREFIX   relative path to uspace/ directory
36
 
#       LIBS            libraries to link with (with relative path)
37
 
#       EXTRA_CFLAGS    additional flags to pass to C compiler
38
 
#       JOB             job file name (like appname.job)
39
 
#       OUTPUT          output binary name (like appname)
40
 
#       SOURCES         list of source files
 
35
#   USPACE_PREFIX  relative path to uspace/ directory
 
36
#   LIBS           libraries to link with (with relative path)
 
37
#   EXTRA_CFLAGS   additional flags to pass to C compiler
 
38
#   JOB            job file name (like appname.job)
 
39
#   OUTPUT         output binary name (like appname)
 
40
#   SOURCES        list of source files
41
41
#
42
42
 
43
43
DEPEND = Makefile.depend
71
71
        rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(EXTRA_OUTPUT) $(EXTRA_CLEAN)
72
72
        find . -name '*.o' -follow -exec rm \{\} \;
73
73
 
74
 
build: 
 
74
build:
75
75
 
76
76
-include $(DEPEND)
77
77