Codebase list enumiax / a94f0b1e-35b7-4e33-bf4e-15f41329737f/main base.mk
a94f0b1e-35b7-4e33-bf4e-15f41329737f/main

Tree @a94f0b1e-35b7-4e33-bf4e-15f41329737f/main (Download .tar.gz)

base.mk @a94f0b1e-35b7-4e33-bf4e-15f41329737f/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