[go: up one dir, main page]

Menu

[ee8051]: / Makefile  Maximize  Restore  History

Download this file

19 lines (12 with data), 281 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
sinclude ../../Makeconf
PKG_FILES = COPYING DESCRIPTION INDEX PKG_ADD $(wildcard src/*)
SUBDIRS = src/
.PHONY: $(SUBDIRS)
pre-pkg::
$(MAKE) -C src clean
post-pkg::
$(MAKE) -C src gsl_sf.cc
clean:
@for _dir in $(SUBDIRS); do \
$(MAKE) -C $$_dir $(MAKECMDGOALS); \
done