From 2cf4946597e5a6ba55ca40359494bc5732c1b9e3 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 25 Mar 2010 15:46:39 +0000 Subject: add px5g (moved from LuCI trunk) SVN-Revision: 20429 --- package/px5g/src/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/px5g/src/Makefile (limited to 'package/px5g/src/Makefile') diff --git a/package/px5g/src/Makefile b/package/px5g/src/Makefile new file mode 100644 index 0000000000..2bd95739cb --- /dev/null +++ b/package/px5g/src/Makefile @@ -0,0 +1,14 @@ +CFLAGS?=-O2 +CFLAGS+= +SFLAGS:=--std=gnu99 +WFLAGS:=-Wall -Werror -pedantic +LDFLAGS?= +BINARY:=px5g + +all: $(BINARY) + +$(BINARY): *.c library/*.c + $(CC) -I. $(CFLAGS) $(SFLAGS) $(WFLAGS) $(LDFLAGS) -o $@ $+ + +clean: + rm -f $(BINARY) -- cgit v1.2.3