archive
/
Enigma-Machine
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Enigma-Machine/Makefile

19 lines
263 B
Makefile

LIBS = src/libs/*
BUILD_ARGS = -Wall -Werror -Ilibs/
build: libraries
g++ src/main.cpp -Ldist/* -Ilibs/ -o enigma
libraries:
mkdir dist/
for dir in $(LIBS); do \
cd $$dir; \
g++ -c *.c -I../;\
mv *.o ../../dist; \
cd -;
done
clean:
rm -rf dist/