/make/edam-mk

To get this branch, use:
bzr branch http://bzr.ed.am/make/edam-mk

« back to all changes in this revision

Viewing changes to edam.mk

  • Committer: edam
  • Date: 2011-01-26 11:35:01 UTC
  • Revision ID: edam@waxworlds.org-20110126113501-ct1o8hnued54omal
- changed debugging info level to highest

Show diffs side-by-side

added added

removed removed

119
119
# run          Builds the target of your Makefile and, if successful, runs it.
120
120
#              This is not available if you're building a library of some kind.
121
121
#
122
 
# debug        The same as the run goal, except instead of running the target,
123
 
#              it is debugged with gdb.
124
 
#
125
122
# clean        Deletes temporary files.
126
123
#
127
124
# clean_all    Deletes temporary files and then goes through then project's
227
224
#_______________________________________________________________________________
228
225
#                                                                          RULES
229
226
 
230
 
.PHONY: all subdirs subprojs target clean clean_all run debug depend dep \
 
227
.PHONY: all subdirs subprojs target clean clean_all run depend dep \
231
228
        $(SUBDIRS) $(SUBPROJS)
232
229
 
233
230
all: subdirs subprojs target
253
250
ifndef MKSHAREDLIB
254
251
run: target
255
252
        ./$(TARGET)
256
 
 
257
 
debug: target
258
 
        gdb ./$(TARGET)
259
253
endif
260
254
endif
261
255