initial project import from KDevelop
This commit is contained in:
commit
7f9cc3e418
9
Makefile
Normal file
9
Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
CC=gcc
|
||||
CFLAGS="-Wall"
|
||||
|
||||
debug:clean
|
||||
$(CC) $(CFLAGS) -g -o xmss_ref main.c
|
||||
stable:clean
|
||||
$(CC) $(CFLAGS) -o xmss_ref main.c
|
||||
clean:
|
||||
rm -vfr *~ xmss_ref
|
7
main.c
Normal file
7
main.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
printf("Hello World!");
|
||||
return 0;
|
||||
}
|
4
xmss_ref.kdev4
Normal file
4
xmss_ref.kdev4
Normal file
@ -0,0 +1,4 @@
|
||||
[Project]
|
||||
Name=xmss_ref
|
||||
Manager=KDevCustomMakeManager
|
||||
VersionControl=kdevgit
|
Ładowanie…
Reference in New Issue
Block a user