This commit is contained in:
wheelchairy 2025-02-04 14:55:03 +03:00
commit d858bd2b67
2 changed files with 18 additions and 0 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
TARGET = choochoo
CC = clang
CFLAGS = -O2 -Wall
SRCS = choochoo.c
all: $(TARGET)
$(TARGET): $(SRCS)
$(CC) $(CFLAGS) -o $(TARGET) $(SRCS)
clean:
rm -f $(TARGET)

6
choochoo.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Choo-Choo!\n");
return 0;
}