mirror of
https://github.com/aap/librw.git
synced 2024-11-25 21:25:42 +00:00
12 lines
262 B
Makefile
12 lines
262 B
Makefile
# null, gl3, ps2, d3d9
|
|
BUILD := null
|
|
TARGET := librw-$(BUILD).a
|
|
CFLAGS := -Wall -Wextra -g -fno-diagnostics-show-caret \
|
|
-Wno-parentheses -Wno-invalid-offsetof \
|
|
-Wno-unused-parameter -Wno-sign-compare
|
|
|
|
include Make.common
|
|
|
|
$(TARGET): $(OBJ)
|
|
ar scr $@ $(OBJ)
|