/[projects]/smsdaemon/Makefile
ViewVC logotype

Contents of /smsdaemon/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (show annotations) (download)
Mon Jun 9 18:15:53 2008 UTC (15 years, 11 months ago) by torben
File size: 448 byte(s)
Added first basic edition of smsdaemon.

So far sending & receiving sms works and a basic sample plugin is implemented.

1 CXXFLAGS=-O0 -Wall -g -I.
2 CFLAGS=$(CXXFLAGS)
3 CC=g++
4 LDFLAGS=$(CXXFLAGS);
5
6 OBJS=main.o SerialPort.o PosixSignalDispatcher.o GsmModem.o Sms.o util.o common.o PluginManager.o daemon.o kbhit.o TaskManager.o plugins/plugins.a
7
8 smsdaemon: $(OBJS)
9 $(CC) $(CXXFLAGS) -o smsdaemon $(OBJS)
10
11
12 plugins/plugins.a:
13 cd plugins && make
14
15 .PHONY: clean test
16
17 test: smsdaemon
18 ./smsdaemon --debug
19
20
21 clean:
22 rm -f *.o
23 rm -f smsdaemon
24 cd plugins && make clean

  ViewVC Help
Powered by ViewVC 1.1.20