Modularized modes and separated them into their own source files

This commit is contained in:
Scoopta
2019-09-13 00:25:25 -07:00
parent 323af30d68
commit 117868a033
14 changed files with 413 additions and 203 deletions

View File

@@ -10,6 +10,7 @@ RM := rm -rf
-include sources.mk
-include src/subdir.mk
-include proto/subdir.mk
-include modes/subdir.mk
-include subdir.mk
-include objects.mk
@@ -30,7 +31,7 @@ all: wofi
wofi: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GCC C Linker'
gcc -pthread -o "wofi" $(OBJS) $(USER_OBJS) $(LIBS)
gcc -rdynamic -pthread -o "wofi" $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '