mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-17 16:10:29 +00:00
Update cheevos - style nits
This commit is contained in:
parent
bbcd49b6df
commit
0a3db8f7bb
21
libretro-common/net/Makefile
Normal file
21
libretro-common/net/Makefile
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user