source: freewrt/package/pipacs/src/Makefile@ 475ad56

freewrt_1_0 freewrt_2_0
Last change on this file since 475ad56 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 200 bytes
Line 
1# $Id$
2
3EXTRA_CFLAGS := -c -I.
4PIPACS_OBJS := pipacs.o parser.o
5
6all: pipacs
7
8%.o: %.c
9 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ $^
10
11pipacs: $(PIPACS_OBJS)
12 $(CC) -o $@ $^
13
14clean:
15 rm -f *.o *.so pipacs
Note: See TracBrowser for help on using the repository browser.