Initial
This commit is contained in:
commit
d3e3fdd502
12
Makefile
Normal file
12
Makefile
Normal 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
6
choochoo.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Choo-Choo!\n");
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user