mirror of
https://github.com/fmang/opustags.git
synced 2025-01-16 05:03:13 +01:00
Makefile + hello
This commit is contained in:
commit
a9d30274c6
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
CC=clang
|
||||
CFLAGS=-Wall
|
||||
LDFLAGS=-logg
|
||||
|
||||
all: opustags
|
||||
|
||||
opustags: opustags.c
|
||||
|
||||
clean:
|
||||
rm -f opustags
|
5
opustags.c
Normal file
5
opustags.c
Normal file
@ -0,0 +1,5 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv){
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user