[package] util-linux(-ng): revert r31183, r31178 - the update introduced several...
[openwrt.git] / package / rbcfg / src / Makefile
1 CC = gcc
2 CFLAGS = -Wall
3 OBJS = main.o cyg_crc32.o
4
5 all: rbcfg
6
7 %.o: %.c
8 $(CC) $(CFLAGS) -c -o $@ $<
9
10 rbcfg: $(OBJS)
11 $(CC) -o $@ $(OBJS)
12
13 clean:
14 rm -f rbcfg *.o
This page took 0.055174 seconds and 5 git commands to generate.