added makefile

This commit is contained in:
Win 2024-05-15 16:18:18 +07:00
parent ce055c56f6
commit 7d98124fbc
2 changed files with 4 additions and 9 deletions

View File

@ -1,9 +0,0 @@
#include <stdio.h>
char *p;
int l = 65;
char *p = (char *) &l;
int q = *(int **) &p = &l;

4
makefile Normal file
View File

@ -0,0 +1,4 @@
CC=gcc
all: webserver.c
$(CC) webserver.c -o webserver