diff options
| author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-04-30 09:40:09 +0200 |
|---|---|---|
| committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-04-30 09:40:09 +0200 |
| commit | af703ff647668bd0f2a088fc4335ae8b5f88c7f9 (patch) | |
| tree | b567dba8fe53823b6a3d18ee04a583d126756f1f | |
| parent | b956db43523f7e6c45e9ad759b0a4c70813d443d (diff) | |
Makefile: Create an empty .config if needed
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -269,6 +269,11 @@ endif default: build/system.elf +# When running ./mp arch=... app=..., a .config file is not needed. +# Create an empty one if it does not exist yet. +.config: + touch .config + include/config.h: .config ${QUIET}test -z "${app}" && awk -f script/conf2h.awk .config > include/config.h || : > include/config.h |
