Codebase list enumiax / a73a4139-0469-4c90-8e9d-55c9cfe480a7/main base.mk
a73a4139-0469-4c90-8e9d-55c9cfe480a7/main

Tree @a73a4139-0469-4c90-8e9d-55c9cfe480a7/main (Download .tar.gz)

base.mk @a73a4139-0469-4c90-8e9d-55c9cfe480a7/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