mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00
9 lines
107 B
Makefile
9 lines
107 B
Makefile
all: lua1
|
|
|
|
lua1: lua1.cpp
|
|
g++ -Wall -Wextra -pedantic -std=c++11 -o $@ $< -llua -ldl
|
|
|
|
clean:
|
|
rm -f lua1
|
|
|