Files
3DS-MP3-Player/server/Makefile
2026-01-09 17:07:05 +01:00

13 lines
189 B
Makefile

CC=g++
CFLAGS+=-Werror -Wall
LDLIBS=-lcurl -lpcre -lws2_32
CFILES = \
src/main.cpp
OFILES = $(CFILES:.cpp=.o)
all: $(OFILES)
$(CC) $(CFLAGS) $(OFILES) $(LDLIBS)
clean:
$(RM) $(OFILES)