diff options
| author | Nicolas Thill <nico@openwrt.org> | 2006-01-09 15:46:03 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2006-01-09 15:46:03 +0000 |
| commit | 2647efdaab4e47aa7c853a2f8eb5d22149c842c3 (patch) | |
| tree | b8f090a44c9d871f33347c0fb2d42af2e8d4075e /openwrt/package/pipacs/src/Makefile | |
| parent | 50ace1c6d91f3143478c0b72f5ec91d3da44e7ff (diff) | |
| download | mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.zip mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.tar.gz mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.tar.bz2 | |
add pipacs package (thanks to Janos)
SVN-Revision: 2865
Diffstat (limited to 'openwrt/package/pipacs/src/Makefile')
| -rw-r--r-- | openwrt/package/pipacs/src/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/openwrt/package/pipacs/src/Makefile b/openwrt/package/pipacs/src/Makefile new file mode 100644 index 0000000..a9a8805 --- /dev/null +++ b/openwrt/package/pipacs/src/Makefile @@ -0,0 +1,15 @@ +# $Id$ + +EXTRA_CFLAGS := -c -I. +PIPACS_OBJS := pipacs.o parser.o + +all: pipacs + +%.o: %.c + $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ $^ + +pipacs: $(PIPACS_OBJS) + $(CC) -o $@ $^ + +clean: + rm -f *.o *.so pipacs |
