File: Makefile

package info (click to toggle)
murasaki 1.68.6-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,780 kB
  • sloc: cpp: 16,010; perl: 8,365; makefile: 187; sh: 31
file content (21 lines) | stat: -rwxr-xr-x 286 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Handy Makefile
# Kris Popendorf 2005/10/14
# Murasaki project

#one Makefile to rule them all...

all: 
	$(MAKE) -C src all

#one Makefile to bring them all...

clean:
	-rm -rf *.o *~ .*~ core
	$(MAKE) -C src clean

#and in the darkness...

depend:
	$(MAKE) -C src depend

#bind them