Initial commit of `nedfp` as a front panel for `nedsim`.
[ned1] / nedfp / Makefile
diff --git a/nedfp/Makefile b/nedfp/Makefile
new file mode 100644 (file)
index 0000000..8c4e053
--- /dev/null
@@ -0,0 +1,17 @@
+# © 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