1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-30 08:18:32 +03:00
openwrt-xburst/package/px5g/src/Makefile

15 lines
226 B
Makefile
Raw Normal View History

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)