Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (8 loc) · 241 Bytes

File metadata and controls

16 lines (8 loc) · 241 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS := `sdl-config --cflags`
LDFLAGS := `sdl-config --libs`
COMMON_SRC := SDL_at.c
COMMON_INCLUDE := SDL_at.h
.PHONY: all
all: rwops
rwops: rwops.c $(COMMON_INCLUDE)
$(CC) $(CFLAGS) $(LDFLAGS) -o rwops rwops.c $(COMMON_SRC)