Initial commit of `nedfp` as a front panel for `nedsim`.
[ned1] / nedfp / Makefile
# © 2018 Aaron Taylor <ataylor at subgeniuskitty dot com>
# See LICENSE.txt file for copyright and license details.
include ../common/main.mk
SRC != ls *.c
SDL_FLAGS = -L/usr/local/lib -lSDL2 -lSDL2_ttf -I/usr/local/include
CC_FLAGS += $(SDL_FLAGS)
all: nedfp
nedfp:
$(CC) $(CC_FLAGS) -o $@ $(SRC)
clean:
@rm -f nedfp