X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=Makefile;h=8a1ea8177192ec5461850f683944ec7bc5f51320;hb=19f316a185dc3d2a67fc3d3546f3989e45559d7c;hp=7f5b123f4678d2594eefa3768562c450add800d9;hpb=8819789ef2264b26aebfae489932a447f6e0f65f;p=bluesky.git diff --git a/Makefile b/Makefile index 7f5b123..8a1ea81 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PACKAGES=glib-2.0 gthread-2.0 DEBUG=-g -CFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 $(DEBUG) \ +CFLAGS=-O -std=gnu99 -Wall -D_FILE_OFFSET_BITS=64 $(DEBUG) \ $(shell pkg-config --cflags $(PACKAGES)) LDFLAGS=$(DEBUG) $(shell pkg-config --libs $(PACKAGES)) SUBDIRS=nfs3 @@ -20,6 +20,7 @@ bluesky : main.o bluesky.a clean : rm -f $(OBJS) bluesky + for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done dep : touch Makefile.dep