summaryrefslogtreecommitdiff
path: root/scripts/ext_skel_ng/config_m4.php
blob: af0a16d5139c337bcdaf26e7eb5a4e15279e824d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

class config_m4 {
	# name, with[], libs[], language, files[]
	var $name;
	var $language = "c";
	var $with = false;
	var $libs = array();
	var $files = array();

	function __construct($name) {
		$this->name = $name;
	}

	function write_file() {
		$upname = strtoupper($this->name);
		
		// CVS ID header
		echo 
'dnl
dnl $ Id: $
dnl
';
				
	}
}

?>