File: gnu.mak

package info (click to toggle)
objcryst-fox 2022.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,040 kB
  • sloc: cpp: 70,656; xml: 43,909; ansic: 467; python: 170; makefile: 21; sh: 12
file content (16 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SUBDIRS= pbso4

all:
	@for d in $(SUBDIRS); do (cd $$d && make -f gnu.mak all debug=$(debug) opengl=$(opengl) wxcryst=$(wxcryst)); done

default:all

# target for removing all object files
.PHONY : tidy
tidy::
	@for d in $(SUBDIRS); do (cd $$d && make -f gnu.mak tidy); done

# target for removing all object files and libraries
.PHONY : clean
clean::
	@for d in $(SUBDIRS); do (cd $$d && make -f gnu.mak clean); done