More GNUmakefile cleanups.

With the normalization of magimail's Makefile,
we can further simplify this logic.

Integrate the WWW logic into GNUmakefile.common.

Remove the custom `Makefile.sunos` files: just
use a conditional in the Makefile.

Signed-off-by: Dan Cross <patchdev@fat-dragon.org>
This commit is contained in:
Dan Cross 2018-10-09 15:55:12 +00:00 committed by Andrew Pamment
parent fb64c2e924
commit 264b5688b2
2 changed files with 43 additions and 43 deletions

View File

@ -1,22 +1,22 @@
CC=cc CC=cc
DEPS = main.c DEPS = main.c
OBJ = main.o OBJ = main.o
%.o: %.c $(DEPS) %.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) $(CC) -c -o $@ $< $(CFLAGS)
JSMN = ../../deps/jsmn/libjsmn.a JSMN = ../../deps/jsmn/libjsmn.a
all: magichat all: magichat
$(JSMN): $(JSMN):
cd ../../deps/jsmn/ && $(MAKE) cd ../../deps/jsmn/ && $(MAKE)
magichat: $(OBJ) $(JSMN) magichat: $(OBJ) $(JSMN)
$(CC) -o magichat -o $@ $^ $(CFLAGS) $(LDFLAGS) $(CC) -o magichat -o $@ $^ $(CFLAGS) $(LDFLAGS)
.PHONY: clean .PHONY: clean
clean: clean:
rm -f $(OBJ) magichat rm -f $(OBJ) magichat

View File

@ -1,22 +1,22 @@
CC=cc CC=cc
DEPS = main.c DEPS = main.c
OBJ = main.o OBJ = main.o
%.o: %.c $(DEPS) %.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) $(CC) -c -o $@ $< $(CFLAGS)
JSMN = ../../deps/jsmn/libjsmn.a JSMN = ../../deps/jsmn/libjsmn.a
all: magichat all: magichat
$(JSMN): $(JSMN):
cd ../../deps/jsmn/ && $(MAKE) cd ../../deps/jsmn/ && $(MAKE)
magichat: $(OBJ) $(JSMN) magichat: $(OBJ) $(JSMN)
$(CC) -o magichat -o $@ $^ $(CFLAGS) $(LDFLAGS) -lsocket $(CC) -o magichat -o $@ $^ $(CFLAGS) $(LDFLAGS) -lsocket
.PHONY: clean .PHONY: clean
clean: clean:
rm -f $(OBJ) magichat rm -f $(OBJ) magichat