Files
pikotools/Makefile
Tomasz Sowa cd3a1b853f changed: class name: ConfParser -> SpaceParser
git-svn-id: svn://ttmath.org/publicrep/pikotools/trunk@402 e52654a7-88a9-db11-a3e9-0013d4bc506e
2012-04-30 13:10:55 +00:00

40 lines
598 B
Makefile
Executable File

# Makefile for GNU make
ifndef CXX
CXX = g++
endif
ifndef CXXFLAGS
CXXFLAGS = -Wall -pedantic -O2 -I/usr/local/include -I.. -L/usr/local/lib
endif
export CXX
export CXXFLAGS
all: space mainparser utf8
space: FORCE
@cd space ; $(MAKE) -e
mainparser: FORCE
@cd mainparser ; $(MAKE) -e
utf8: FORCE
@cd utf8 ; $(MAKE) -e
FORCE:
clean:
@cd space ; $(MAKE) -e clean
@cd mainparser ; $(MAKE) -e clean
@cd utf8 ; $(MAKE) -e clean
depend:
@cd space ; $(MAKE) -e depend
@cd mainparser ; $(MAKE) -e depend
@cd utf8 ; $(MAKE) -e depend