This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
xmss-KAT-generator
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
initial project import from KDevelop
master
Andreas
9 years ago
commit
7f9cc3e418
3 changed files
with
20 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
Makefile
+7
-0
main.c
+4
-0
xmss_ref.kdev4
+ 9
- 0
Makefile
View 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
- 0
main.c
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
printf("Hello World!");
return 0;
}
+ 4
- 0
xmss_ref.kdev4
View File
@@ -0,0 +1,4 @@
[Project]
Name=xmss_ref
Manager=KDevCustomMakeManager
VersionControl=kdevgit
Write
Preview
Loading…
Cancel
Save