limedriver/Makefile.am
Kumi 05b3b0a869
Standardize binary output directory and cleanup
Moved compiled binaries to a dedicated 'bin/' directory to streamline output organization, ensuring that all executables are consolidated in a single, standard location. Updated the gitignore to reflect this change, which helps prevent accidental commits of executable files. The Makefile was also adjusted to build the 'limedriver' program within the new directory structure.

Removed the previously tracked binary 'limedriver' to reduce repository clutter and avoid potential merge conflicts with binary files. Now, future compilations will adhere to the new 'bin/' directory convention, improving the project's structure and maintainability.
2024-02-05 10:26:03 +01:00

6 lines
138 B
Makefile

CXX = h5c++
AM_LDFLAGS = $(shell pkg-config --libs LimeSuite)
bin_PROGRAMS = bin/limedriver
bin_limedriver_SOURCES = src/limedriver.cpp