Create a basice run configration

This commit is contained in:
Anas Elgarhy 2022-10-31 16:05:04 +02:00
parent 50e80e07ed
commit 99f899be42
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="install" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
<makefile filename="$PROJECT_DIR$/src/Makefile" target=" install clean" workingDirectory="$PROJECT_DIR$/src" arguments="">
<envs />
</makefile>
<method v="2" />
</configuration>
</component>

View File

@ -14,7 +14,7 @@
#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
#define XEMBED_EMBEDDED_VERSION (VERSION_MAJOR << 16) | VERSION_MINOR
#define XEMBED_EMBEDDED_VERSION ((VERSION_MAJOR << 16) | VERSION_MINOR)
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))