File: Makefile.base

package info (click to toggle)
libstatgen 1.0.15-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,588 kB
  • sloc: cpp: 49,624; ansic: 1,408; makefile: 320; sh: 60
file content (21 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SUBDIRS should be set by the Makefile that includes this one.
# SUBDIRS = 

MAKEFILES_PATH := $(dir $(lastword $(MAKEFILE_LIST)))
include $(MAKEFILES_PATH)Makefile.include

# Build in all subdirectories.


.PHONY: $(SUBDIRS)

include $(MAKEFILES_PATH)Makefile.help

$(SUBDIRS): 
	@$(MAKE) -C $@ $(MAKECMDGOALS)

%: $(SUBDIRS) ;

Makefile.%: ;

Makefile: ;