diff options
| author | Jacob McDonnell <jacob@simplelittledream.com> | 2021-08-18 17:31:19 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@simplelittledream.com> | 2021-08-18 17:31:19 -0400 |
| commit | 9a6959b2700ec54392fb2ffb145bacae66fc2269 (patch) | |
| tree | 34704cfbbb55e349ab91c09138911f2906e90988 /FibFinder/makefile | |
initial commit
Diffstat (limited to 'FibFinder/makefile')
| -rwxr-xr-x | FibFinder/makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/FibFinder/makefile b/FibFinder/makefile new file mode 100755 index 0000000..8537a95 --- /dev/null +++ b/FibFinder/makefile @@ -0,0 +1,20 @@ +# ---------------------------- +# Makefile Options +# ---------------------------- + +NAME ?= FibFinder +ICON ?= icon.png +DESCRIPTION ?= "Fibonacci Number Finder" +COMPRESSED ?= NO +ARCHIVED ?= NO + +CFLAGS ?= -Wall -Wextra -Oz +CXXFLAGS ?= -Wall -Wextra -Oz + +# ---------------------------- + +ifndef CEDEV +$(error CEDEV environment path variable is not set) +endif + +include $(CEDEV)/meta/makefile.mk |
