source: src/lib/Makefile @ 5f4d9c3

Last change on this file since 5f4d9c3 was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 12 years ago

Rewritten the build system, added lem UTF-8 version.

  • Property mode set to 100644
File size: 317 bytes
Line 
1include ../../config.mak
2
3CXXFLAGS += -O2 -fpermissive
4
5LIB_PATH=../lib
6COMMON_PATH=../common
7
8main: auttools.o word.o
9
10auttools.o: auttools.h auttools.cc
11        $(CXX) $(CXXFLAGS) -c auttools.cc
12
13word.o: word.h word.cc
14        $(CXX) $(CXXFLAGS) -c word.cc
15
16clean:
17        rm *.o
18
19.PHONY: install
20install:
21
22.PHONY: uninstall
23uninstall:
Note: See TracBrowser for help on using the repository browser.