/[projects]/smsdaemon/plugins/Makefile
ViewVC logotype

Contents of /smsdaemon/plugins/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: 194 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. -I..
2 CFLAGS=$(CXXFLAGS)
3 CC=g++
4 LDFLAGS=$(CXXFLAGS);
5
6 OBJS=EchoPlugin.o
7
8 plugins.a: $(OBJS)
9 ar rcs plugins.a $(OBJS)
10
11 .PHONY: clean
12
13
14
15 clean:
16 rm -f *.o
17 rm -f *.a

  ViewVC Help
Powered by ViewVC 1.1.20