Update cheevos - style nits

This commit is contained in:
twinaphex 2015-10-15 16:04:26 +02:00
parent bbcd49b6df
commit 0a3db8f7bb
2 changed files with 908 additions and 969 deletions

1856
cheevos.c

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,21 @@
TARGET := http_test
SOURCES := $(wildcard *.c) \
../compat/compat.c
OBJS := $(SOURCES:.c=.o)
CFLAGS += -Wall -pedantic -std=gnu99 -O0 -g -I../include
all: $(TARGET)
%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS)
$(TARGET): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET) $(OBJS)
.PHONY: clean