Codebase list enumiax / 9cd12139-d610-4cf5-b966-5c785cf6030c/main base.mk
9cd12139-d610-4cf5-b966-5c785cf6030c/main

Tree @9cd12139-d610-4cf5-b966-5c785cf6030c/main (Download .tar.gz)

base.mk @9cd12139-d610-4cf5-b966-5c785cf6030c/mainraw · history · blame

# Compiler Options
#CC = gcc
CFLAGS = -O2 -Wall ${DEBUG}
DEBUG = -g

# Installation Options
BINDIR = /usr/local/bin

clean:
	rm -f core *.o *~ enumiax
	for i in `ls -l | grep "^d" | awk '{ print $$8 }'`; do \
		cd $$i; \
		if [ -e Makefile ]; then \
			make clean; \
		fi; \
		cd ../; \
	done

recurse:
	for i in `ls -l | grep "^d" | awk '{ print $$8 }'`; do \
		cd $$i; \
		if [ -e Makefile ]; then \
			make; \
		fi; \
		cd ../; \
	done